# HG changeset patch # User Mads Kiilerich # Date 1580564386 -3600 # Node ID a5e719bc7b40cf5f53fb00954b6a045c8f27cbc3 # Parent a8c8b32aee5a8d72ca6bcb36200eed4595eba94f config: fix pyflakes warning about unused tg import app_cfg had an unused 'import tg'. tg.hooks was used, but through a separate import. Clean that up by consistently using tg (which always makes tg.hooks available) and dropping the separate hooks import. diff -r a8c8b32aee5a -r a5e719bc7b40 kallithea/config/app_cfg.py --- a/kallithea/config/app_cfg.py Tue Feb 04 03:06:29 2020 +0100 +++ b/kallithea/config/app_cfg.py Sat Feb 01 14:39:46 2020 +0100 @@ -28,7 +28,6 @@ from alembic.migration import MigrationContext from alembic.script.base import ScriptDirectory from sqlalchemy import create_engine -from tg import hooks from tg.configuration import AppConfig from tg.support.converters import asbool @@ -187,7 +186,7 @@ kallithea.model.meta.Session.remove() -hooks.register('configure_new_app', setup_configuration) +tg.hooks.register('configure_new_app', setup_configuration) def setup_application(app): @@ -211,4 +210,4 @@ return app -hooks.register('before_config', setup_application) +tg.hooks.register('before_config', setup_application)