Skip to content

Commit

Permalink
Fix flake8 and ignore E402 error
Browse files Browse the repository at this point in the history
  • Loading branch information
Kemal Maulana committed Dec 25, 2016
1 parent 673409a commit 5a13867
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 0 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@ json-rpc==1.10.3
MarkupSafe==0.23
mccabe==0.5.3
path.py==8.1.1
pep8==1.5.7
pep8-naming==0.3.3
pexpect==3.3
pickleshare==0.5
py==1.4.30
Expand Down
4 changes: 2 additions & 2 deletions tululbot/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
app = Flask(__name__)
app.config.from_object('{}.config'.format(__name__))

from telebot import types
from telebot import types # noqa: E402

from tululbot.utils import TululBot
from tululbot.utils import TululBot # noqa: E402
bot = TululBot(app.config['TELEGRAM_BOT_TOKEN']) # Must be before importing commands

from tululbot import commands # noqa
Expand Down

0 comments on commit 5a13867

Please sign in to comment.