Skip to content

Commit 9c70fc0

Browse files
committed
chore: bring back __ files
1 parent 368a1ab commit 9c70fc0

File tree

4 files changed

+7
-0
lines changed

4 files changed

+7
-0
lines changed

src/fds/__init__.py

Whitespace-only changes.

src/fds/sdk/__init__.py

Whitespace-only changes.

src/fds/sdk/utils/__init__.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
import logging
2+
from logging import NullHandler
3+
4+
# Set default logging handler to avoid "No handler found" warnings.
5+
# See: https://docs.python.org/3/howto/logging.html#library-config
6+
logging.getLogger(__name__).addHandler(NullHandler())
7+
del NullHandler

tests/__init__.py

Whitespace-only changes.

0 commit comments

Comments
 (0)