Skip to content

Commit

Permalink
Elements of __all__ should be strings
Browse files Browse the repository at this point in the history
  • Loading branch information
tlocke committed Sep 1, 2024
1 parent 5919832 commit f981b68
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/scramp/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@
make_channel_binding,
)

__all__ = [ScramClient, ScramMechanism, ScramException, make_channel_binding]
__all__ = ["ScramClient", "ScramException", "ScramMechanism", "make_channel_binding"]

__version__ = version("scramp")
5 changes: 5 additions & 0 deletions test/test_import_all.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
from scramp import * # noqa: F403,F401


def test_import_all():
pass

0 comments on commit f981b68

Please sign in to comment.