Skip to content

Commit

Permalink
fix: define exports explicitly
Browse files Browse the repository at this point in the history
Makes mypy happier
  • Loading branch information
iharthi committed Nov 7, 2023
1 parent 5835323 commit 210803d
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion pywaybiller/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
from .client import WaybillerClient # noqa: F401
"""Top-level package for pywaybiller."""

from .client import WaybillerClient

__all__ = ("WaybillerClient", )

0 comments on commit 210803d

Please sign in to comment.