aboutsummaryrefslogtreecommitdiffstats
path: root/botcore/__init__.py
diff options
context:
space:
mode:
authorGravatar Chris Lovering <[email protected]>2022-11-05 13:39:52 +0000
committerGravatar Chris Lovering <[email protected]>2022-11-05 14:05:00 +0000
commit962968fecedca3bef33ba9524d87ffedf815f16d (patch)
tree3dd7b6c6cae4f01c8a5aae3e2371bd3a5e9dd0e7 /botcore/__init__.py
parentUpdate pyproject.toml module meta data (diff)
Rename package due to naming conflict
Diffstat (limited to 'botcore/__init__.py')
-rw-r--r--botcore/__init__.py15
1 files changed, 0 insertions, 15 deletions
diff --git a/botcore/__init__.py b/botcore/__init__.py
deleted file mode 100644
index f0c4e6bb..00000000
--- a/botcore/__init__.py
+++ /dev/null
@@ -1,15 +0,0 @@
-"""Useful utilities and tools for Discord bot development."""
-
-from botcore import async_stats, exts, site_api, utils
-from botcore._bot import BotBase, StartupError
-
-__all__ = [
- async_stats,
- BotBase,
- exts,
- utils,
- site_api,
- StartupError,
-]
-
-__all__ = list(map(lambda module: module.__name__, __all__))