Skip to content

Commit 6cee4ab

Browse files
committed
fix: make package namespace compliant
1 parent 28d5c87 commit 6cee4ab

5 files changed

Lines changed: 8 additions & 7 deletions

File tree

src/fds/__init__.py

Whitespace-only changes.

src/fds/sdk/__init__.py

Whitespace-only changes.

src/fds/sdk/utils/__init__.py

Lines changed: 0 additions & 7 deletions
This file was deleted.

src/fds/sdk/utils/authentication/__init__.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,11 @@
88
ConfigurationError,
99
JWSSigningError,
1010
)
11+
12+
import logging
13+
from logging import NullHandler
14+
15+
# Set default logging handler to avoid "No handler found" warnings.
16+
# See: https://docs.python.org/3/howto/logging.html#library-config
17+
logging.getLogger(__name__).addHandler(NullHandler())
18+
del NullHandler

tests/__init__.py

Whitespace-only changes.

0 commit comments

Comments
 (0)