Skip to content

Commit

Permalink
Add __all__ exports in modules
Browse files Browse the repository at this point in the history
Signed-off-by: Tsuyoshi Hombashi <[email protected]>
  • Loading branch information
thombashi committed Jan 1, 2025
1 parent 41b8b0d commit 65bba25
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
7 changes: 6 additions & 1 deletion simplesqlite/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
.. codeauthor:: Tsuyoshi Hombashi <[email protected]>
"""

import simplesqlite.query
import simplesqlite.query # type: ignore

from .__version__ import __author__, __copyright__, __email__, __license__, __version__
from ._func import append_table, copy_table
Expand All @@ -21,6 +21,11 @@


__all__ = (
"__author__",
"__copyright__",
"__email__",
"__license__",
"__version__",
"AttributeNotFoundError",
"DatabaseError",
"NameValidationError",
Expand Down
3 changes: 3 additions & 0 deletions simplesqlite/_logger/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1,4 @@
from ._logger import logger, set_log_level, set_logger


__all__ = ("logger", "set_log_level", "set_logger")

0 comments on commit 65bba25

Please sign in to comment.