From 529cd45dbd6c78a4bd64f1b99a7b7bd6544564a7 Mon Sep 17 00:00:00 2001 From: Peter Marsh Date: Sun, 24 Sep 2017 16:35:20 +0100 Subject: [PATCH] Fix flake8 E265 violation in multidb env.py template flake8 detected the following violation in env.py for multidb projects: multidb/env.py:34:1: E265 block comment should start with '# ' #} ^ This fixes the violation in the template, so fresh multidb projects will no longer have this violation. --- alembic/templates/multidb/env.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/alembic/templates/multidb/env.py b/alembic/templates/multidb/env.py index 453b41cc..db24173f 100644 --- a/alembic/templates/multidb/env.py +++ b/alembic/templates/multidb/env.py @@ -31,7 +31,7 @@ db_names = config.get_main_option('databases') # target_metadata = { # 'engine1':mymodel.metadata1, # 'engine2':mymodel.metadata2 -#} +# } target_metadata = {} # other values from the config, defined by the needs of env.py, -- 2.47.2