Skip to content

Commit db054a9

Browse files
committed
fix: removed __init__ changes
1 parent 77f75b7 commit db054a9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/hawkcatcher/__init__.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
from .core import Hawk
44
from .types import HawkCatcherSettings
5-
from .modules.flask.types import FlaskSettings
65

76
hawk = Hawk()
87

@@ -12,4 +11,4 @@ def init(*args, **kwargs):
1211

1312

1413
def send(*args, **kwargs):
15-
hawk.send(*args, **kwargs)
14+
hawk.send(*args, **kwargs)

src/hawkcatcher/modules/flask/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
from .flask import HawkFlask
22
from .types import HawkCatcherSettings
3+
from .types import FlaskSettings
34

45
hawk = HawkFlask()
56

0 commit comments

Comments
 (0)