This commit is contained in:
Anurag Patil 2020-03-21 22:11:01 +05:30
commit 385c501ac4
4 changed files with 43 additions and 19 deletions

1
.gitignore vendored
View file

@ -57,3 +57,4 @@ coverage.xml
# Sphinx documentation # Sphinx documentation
docs/_build/ docs/_build/
extensions/__pycache__/core.cpython-38.pyc

View file

@ -1 +1 @@
pypy3.6-7.3.0 3.8.1

View file

@ -22,28 +22,25 @@ class Logging():
# Sets info hook first # Sets info hook first
self.info_hook = self.online.get_webhook( self.info_hook = self.online.get_webhook(
bot.config['HOOKS']['INFO_HOOK'] bot.config['HOOKS']['INFO_HOOK']) \
if bot.config['HOOKS']['INFO_HOOK'] if bot.config['HOOKS']['INFO_HOOK'] \
else None else None
)
# Sets other hooks or defaults them # Sets other hooks or defaults them
if self.info_hook: if self.info_hook:
self.warn_hook = self.online.get_webhook( self.warn_hook = self.online.get_webhook(
bot.config['HOOKS']['WARN_HOOK'] bot.config['HOOKS']['WARN_HOOK']) \
if bot.config['HOOKS']['WARN_HOOK'] if bot.config['HOOKS']['WARN_HOOK'] \
else self.info_hook else self.info_hook
)
self.error_hook = self.online.get_webhook( self.error_hook = self.online.get_webhook(
bot.config['HOOKS']['ERROR_HOOK'] bot.config['HOOKS']['ERROR_HOOK']) \
if bot.config['HOOKS']['ERROR_HOOK'] if bot.config['HOOKS']['ERROR_HOOK'] \
else self.info_hook else self.info_hook
)
self.debug_hook = self.online.get_webhook( self.debug_hook = self.online.get_webhook(
bot.config['HOOKS']['DEBUG_HOOK'] bot.config['HOOKS']['DEBUG_HOOK']) \
if bot.config['HOOKS']['DEBUG_HOOK'] if bot.config['HOOKS']['DEBUG_HOOK'] \
else self.info_hook else self.info_hook
)
# If no hooks, nothing is there # If no hooks, nothing is there
else: else:

View file

@ -1,6 +1,32 @@
discord.py aiohttp==3.6.2
aiohttp astroid==2.3.3
py-cpuinfo async-timeout==3.0.1
psutil attrs==19.3.0
rethinkdb autopep8==1.5
dblpy chardet==3.0.4
dblpy==0.3.4
discord==1.0.1
discord.py==1.3.1
entrypoints==0.3
flake8==3.7.9
idna==2.9
isort==4.3.21
lazy-object-proxy==1.4.3
mccabe==0.6.1
multidict==4.7.4
mypy==0.770
mypy-extensions==0.4.3
psutil==5.7.0
py-cpuinfo==5.0.0
pycodestyle==2.5.0
pyflakes==2.1.1
pylint==2.4.4
ratelimiter==1.2.0.post0
rethinkdb==2.4.5
rope==0.16.0
six==1.14.0
typed-ast==1.4.1
typing-extensions==3.7.4.1
websockets==8.1
wrapt==1.11.2
yarl==1.4.2