adding __all__ in __init__

This commit is contained in:
2025-03-28 13:11:40 +03:00
parent 1ec8ea53b4
commit 6e2fbc23e9
6 changed files with 14 additions and 1 deletions
+2
View File
@@ -1 +1,3 @@
__all__ = ["Command"]
from .entity import Command
+3
View File
@@ -1,2 +1,5 @@
__all__ = ["Flag", "FlagsGroup"]
from .entity import Flag
from .flags_group.entity import FlagsGroup
@@ -1 +1,4 @@
__all__ = ["FlagsGroup"]
from .entity import FlagsGroup