PEP8 cleanups.

This commit is contained in:
Roberto Rosario
2015-07-27 23:53:03 -04:00
parent 0b923a7a1c
commit 1e746c700a
101 changed files with 3244 additions and 892 deletions

View File

@@ -40,7 +40,9 @@ class SmartSettingsApp(MayanAppConfig):
)
SourceColumn(
source=Setting, label=_('Found in path'),
attribute=encapsulate(lambda instance: exists_widget(instance.value) if instance.is_path else _('n/a'))
attribute=encapsulate(
lambda instance: exists_widget(instance.value) if instance.is_path else _('n/a')
)
)
menu_object.bind_links(
@@ -54,4 +56,6 @@ class SmartSettingsApp(MayanAppConfig):
except ImportError:
logger.debug('App %s has not settings.py file', app.name)
else:
logger.debug('Imported settings.py file for app %s', app.name)
logger.debug(
'Imported settings.py file for app %s', app.name
)