Skip to content

Commit

Permalink
Fix autocomplete regression in vscode introduced in #74
Browse files Browse the repository at this point in the history
  • Loading branch information
gtsystem committed Dec 29, 2024
1 parent ca1e2e4 commit 9aff99e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions lightkube/core/schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,6 @@
These dependencies are here because we may decide to replace dataclasses with something else in the future
"""


__all__ = ["dataclass", "field", "DictMixin"]
from dataclasses import dataclass, field
from .dataclasses_dict import DataclassDictMixIn as DictMixin
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

setup(
name='lightkube',
version="0.16.1",
version="0.16.2",
description='Lightweight kubernetes client library',
long_description=Path("README.md").read_text(),
long_description_content_type="text/markdown",
Expand Down

0 comments on commit 9aff99e

Please sign in to comment.