diff options
author | 2019-03-25 09:10:18 +1000 | |
---|---|---|
committer | 2019-03-25 09:10:18 +1000 | |
commit | 84a21439a2497a470c2d8204bb3a0b68fc288982 (patch) | |
tree | 6fb51473decb543e353925048ab60c368144eb46 /snekweb.py | |
parent | Merge pull request #6 from python-discord/contrib-and-precommit (diff) | |
parent | Fix ordering of imports (diff) |
Merge pull request #11 from python-discord/add-flake8-extensions
Add flake8 extensions used in our other projects
Diffstat (limited to 'snekweb.py')
-rw-r--r-- | snekweb.py | 8 |
1 files changed, 3 insertions, 5 deletions
@@ -1,13 +1,11 @@ -import traceback -import threading -import logging import json +import logging +import threading +import traceback from flask import Flask from flask import render_template from flask_sockets import Sockets - - from rmq import Rmq # Load app |