From 550c9e337de1255d93d9457b53f7fdf4845ac262 Mon Sep 17 00:00:00 2001 From: Benjamin Bertrand <benjamin.bertrand@esss.se> Date: Fri, 6 Jul 2018 11:26:01 +0200 Subject: [PATCH] Fix flake8 errors --- .flake8 | 4 ++++ migrations/env.py | 7 +------ 2 files changed, 5 insertions(+), 6 deletions(-) create mode 100644 .flake8 diff --git a/.flake8 b/.flake8 new file mode 100644 index 0000000..a9b2cc9 --- /dev/null +++ b/.flake8 @@ -0,0 +1,4 @@ +[flake8] +# E501: let black handle line length +# W503 is incompatible with PEP 8 +ignore = E501,W503 diff --git a/migrations/env.py b/migrations/env.py index e956c4b..6b4933f 100755 --- a/migrations/env.py +++ b/migrations/env.py @@ -3,6 +3,7 @@ from alembic import context from sqlalchemy import engine_from_config, pool from logging.config import fileConfig import logging +from flask import current_app # this is the Alembic Config object, which provides # access to the values within the .ini file in use. @@ -13,12 +14,6 @@ config = context.config fileConfig(config.config_file_name) logger = logging.getLogger("alembic.env") -# add your model's MetaData object here -# for 'autogenerate' support -# from myapp import mymodel -# target_metadata = mymodel.Base.metadata -from flask import current_app - config.set_main_option( "sqlalchemy.url", current_app.config.get("SQLALCHEMY_DATABASE_URI") ) -- GitLab