Skip to content
Closed
Changes from all commits
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
2 changes: 1 addition & 1 deletion stubs/nanoid/nanoid/__init__.pyi
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from nanoid.generate import generate
from nanoid.non_secure_generate import non_secure_generate

__all__ = ["generate", "non_secure_generate"]
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

__all__ is a special case. We don't annotate this variable, we just specify its contents. So, there's nothing to add here :)

__all__: list[str] = ["generate", "non_secure_generate"]
Loading