Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Make mypy happy with explicit exports #14

Merged
merged 5 commits into from
Jan 14, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
use explicit export and remove unnecessary version tag
vertti committed Jan 14, 2025
commit 126a9ffd524b3efce0301803b3ed3fee7fe2b129
8 changes: 4 additions & 4 deletions daffy/__init__.py
Original file line number Diff line number Diff line change
@@ -6,8 +6,8 @@
the input and output on runtime.
"""

__version__ = "0.5.0"
from .decorators import df_in
from .decorators import df_log
from .decorators import df_out

from .decorators import df_in # noqa
from .decorators import df_log # noqa
from .decorators import df_out # noqa
__all__ = ["df_in", "df_out", "df_log"]