diff options
author | Mango0x45 <thomasvoss@live.com> | 2020-12-14 17:20:54 +0000 |
---|---|---|
committer | Mango0x45 <thomasvoss@live.com> | 2020-12-14 17:20:54 +0000 |
commit | 27bcfe11bf31c12d7654921833daf9c94401eeb3 (patch) | |
tree | 6a07c2ded3ece0ab002fdbbc195b8386075ebe84 /cogs/errorhandler.py | |
parent | 1fe12f137b3d9066dd8bed31c80713f084f38580 (diff) | |
download | steve-bot-27bcfe11bf31c12d7654921833daf9c94401eeb3.tar steve-bot-27bcfe11bf31c12d7654921833daf9c94401eeb3.tar.gz steve-bot-27bcfe11bf31c12d7654921833daf9c94401eeb3.tar.bz2 steve-bot-27bcfe11bf31c12d7654921833daf9c94401eeb3.tar.lz steve-bot-27bcfe11bf31c12d7654921833daf9c94401eeb3.tar.xz steve-bot-27bcfe11bf31c12d7654921833daf9c94401eeb3.tar.zst steve-bot-27bcfe11bf31c12d7654921833daf9c94401eeb3.zip |
Sort imports
Diffstat (limited to 'cogs/errorhandler.py')
-rw-r--r-- | cogs/errorhandler.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cogs/errorhandler.py b/cogs/errorhandler.py index 7b7c0ec..3363d4a 100644 --- a/cogs/errorhandler.py +++ b/cogs/errorhandler.py @@ -1,5 +1,6 @@ -import traceback import sys +import traceback + from discord.ext import commands |