Skip to content

Commit 9569e15

Browse files
committed
Fix black from CI
1 parent baff27e commit 9569e15

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

bot.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ def __init__(self, args):
6060

6161
if len(args):
6262
self.config = ConfigManager(self, args[0])
63-
else:
63+
else:
6464
self.config = ConfigManager(self)
6565
self.config.populate_cache()
6666

core/config.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ class ConfigManager:
134134
defaults = {**public_keys, **private_keys, **protected_keys}
135135
all_keys = set(defaults.keys())
136136

137-
def __init__(self, bot, config_path = os.path.dirname(os.path.abspath(__file__))):
137+
def __init__(self, bot, config_path=os.path.dirname(os.path.abspath(__file__))):
138138
self.bot = bot
139139
self._cache = {}
140140
self.ready_event = asyncio.Event()

0 commit comments

Comments
 (0)