Skip to content

Commit

Permalink
refactor: add __all__ section to utils
Browse files Browse the repository at this point in the history
  • Loading branch information
peterdragun authored and solumath committed Aug 23, 2024
1 parent 65549c0 commit 54ab6dd
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions utils/__init__.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
from . import (
colors, # noqa: F401
constants, # noqa: F401
converters, # noqa: F401
embed, # noqa: F401
general, # noqa: F401
user, # noqa: F401
colors,
constants,
converters,
embed,
general,
user,
)

__all__ = ["colors", "constants", "converters", "embed", "general", "user"]

0 comments on commit 54ab6dd

Please sign in to comment.