Skip to content

Commit

Permalink
Explicitly mark top-level re-exports.
Browse files Browse the repository at this point in the history
  • Loading branch information
wRAR committed Dec 11, 2024
1 parent e0c3f83 commit c3d4ff0
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions itemadapter/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
from .adapter import ItemAdapter # noqa: F401
from .utils import get_field_meta_from_class, is_item # noqa: F401
from .adapter import ItemAdapter
from .utils import get_field_meta_from_class, is_item

__version__ = "0.10.0"

__all__ = [
"ItemAdapter",
"get_field_meta_from_class",
"is_item",
]

0 comments on commit c3d4ff0

Please sign in to comment.