Skip to content
Snippets Groups Projects
Commit 5a495b1e authored by Bo-Chun Chen's avatar Bo-Chun Chen
Browse files

Fix pylint wrong-import-order

parent 12282057
No related branches found
No related tags found
No related merge requests found
# app/__init__.py
# local imports
# standard imports
from __future__ import print_function
import vars
import messages
# third-party imports
import re
import sys
import uuid
from flask import (
Flask,
request,
render_template,
session,
)
from flask_cors import CORS
# third-party imports
from flask import Flask, render_template, request, session
from flask_bootstrap import Bootstrap
import sys
import re
from flask_cors import CORS
# local imports
import messages
......
# run.py
# standard imports
import os
import time
import tasks
import vars
# third-party imports
from flask import session
from flask_socketio import SocketIO, join_room
from app import create_app
from gevent import monkey
# local imports
import tasks
import vars
from app import create_app
monkey.patch_all(subprocess=True)
config_name = os.getenv("FLASK_CONFIG")
......
import vars
import sys
# standard imports
import json
import sys
import time
# third-party imports
from celery import Celery
from flask_socketio import SocketIO
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment