aboutsummaryrefslogtreecommitdiff
path: root/src/utils/consts.py
diff options
context:
space:
mode:
authorGravatar jesopo2019-07-26 11:58:06 +0100
committerGravatar jesopo2019-07-26 11:58:06 +0100
commit77dfc765910ccdebb2816cb65705e67016f80a1f (patch)
treeab94d5cbdc3cd2552a5825cf752d6e3a2b656e59 /src/utils/consts.py
parent8ball.py -> eightball.py (diff)
signature
switch to function/module magic being a single object
Diffstat (limited to 'src/utils/consts.py')
-rw-r--r--src/utils/consts.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/utils/consts.py b/src/utils/consts.py
index 0c57b4b0..9a6e973b 100644
--- a/src/utils/consts.py
+++ b/src/utils/consts.py
@@ -1,9 +1,7 @@
import typing
from . import _consts_256_color
-BITBOT_HOOKS_MAGIC = "__bitbot_hooks"
-BITBOT_KWARG_MAGIC = "__bitbot_kwarg"
-BITBOT_EXPORTS_MAGIC = "__bitbot_exports"
+BITBOT_MAGIC = "__bitbot"
class IRCColor(object):
def __init__(self, irc: int, ansi: int, is_256):