Skip to content

Commit

Permalink
fix: added __all__ to package
Browse files Browse the repository at this point in the history
  • Loading branch information
ErikBjare committed Aug 30, 2022
1 parent a29bf7e commit 4cea325
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions aw_core/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
# ignore: F401

import logging

from . import __about__

from . import decorators
Expand All @@ -15,3 +13,17 @@
from .models import Event

from . import schema

__all__ = [
"__about__",
# Classes
"Event",
# Modules
"decorators",
"util",
"dirs",
"config",
"log",
"models",
"schema",
]

0 comments on commit 4cea325

Please sign in to comment.