From 2e81aee0ac0ba5df07f340e7d927bb20498baa13 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Denis=20Nut=CC=A6iu?= Date: Thu, 13 Apr 2017 16:59:30 +0300 Subject: [PATCH] Optimizing imports --- src/application.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/application.py b/src/application.py index 38c866d..0084cb2 100644 --- a/src/application.py +++ b/src/application.py @@ -15,14 +15,11 @@ You should have received a copy of the GNU General Public License along with scoreboard-benchmark . If not, see . """ -import os - -import flask - from src.models import db from views.errors import error_pages from views.scoreboard import scoreboard from config import config +import flask def create_app(config_name):