aboutsummaryrefslogtreecommitdiff
path: root/src/home/api/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/home/api/__init__.py')
-rw-r--r--src/home/api/__init__.py11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/home/api/__init__.py b/src/home/api/__init__.py
deleted file mode 100644
index 782a61e..0000000
--- a/src/home/api/__init__.py
+++ /dev/null
@@ -1,11 +0,0 @@
-import importlib
-
-__all__ = ['WebAPIClient', 'RequestParams']
-
-
-def __getattr__(name):
- if name in __all__:
- module = importlib.import_module(f'.web_api_client', __name__)
- return getattr(module, name)
-
- raise AttributeError(f"module {__name__!r} has no attribute {name!r}")