forked from CGM_Public/pretix_original
Add PEP8 style empty lines in appropriate places (#321)
New flake8 version finds more (correct) issues.
This commit is contained in:
committed by
Raphael Michel
parent
d653ea5256
commit
e89fa4f7f9
@@ -16,4 +16,5 @@ class PretixBaseConfig(AppConfig):
|
|||||||
except ImportError:
|
except ImportError:
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
|
||||||
default_app_config = 'pretix.base.PretixBaseConfig'
|
default_app_config = 'pretix.base.PretixBaseConfig'
|
||||||
|
|||||||
@@ -51,6 +51,7 @@ class EventPluginSignal(django.dispatch.Signal):
|
|||||||
responses.append((receiver, response))
|
responses.append((receiver, response))
|
||||||
return responses
|
return responses
|
||||||
|
|
||||||
|
|
||||||
register_payment_providers = EventPluginSignal(
|
register_payment_providers = EventPluginSignal(
|
||||||
providing_args=[]
|
providing_args=[]
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -9,4 +9,5 @@ class PretixControlConfig(AppConfig):
|
|||||||
from .views import dashboards # noqa
|
from .views import dashboards # noqa
|
||||||
from . import logdisplay # noqa
|
from . import logdisplay # noqa
|
||||||
|
|
||||||
|
|
||||||
default_app_config = 'pretix.control.PretixControlConfig'
|
default_app_config = 'pretix.control.PretixControlConfig'
|
||||||
|
|||||||
@@ -5,4 +5,5 @@ class PretixMultidomainConfig(AppConfig):
|
|||||||
name = 'pretix.multidomain'
|
name = 'pretix.multidomain'
|
||||||
label = 'pretixmultidomain'
|
label = 'pretixmultidomain'
|
||||||
|
|
||||||
|
|
||||||
default_app_config = 'pretix.multidomain.PretixMultidomainConfig'
|
default_app_config = 'pretix.multidomain.PretixMultidomainConfig'
|
||||||
|
|||||||
@@ -27,4 +27,5 @@ class CheckinlistsApp(AppConfig):
|
|||||||
errs.append("Python package 'reportlab' is not installed.")
|
errs.append("Python package 'reportlab' is not installed.")
|
||||||
return errs
|
return errs
|
||||||
|
|
||||||
|
|
||||||
default_app_config = 'pretix.plugins.checkinlists.CheckinlistsApp'
|
default_app_config = 'pretix.plugins.checkinlists.CheckinlistsApp'
|
||||||
|
|||||||
@@ -27,4 +27,5 @@ class PaypalApp(AppConfig):
|
|||||||
errs.append("Python package 'paypalrestsdk' is not installed.")
|
errs.append("Python package 'paypalrestsdk' is not installed.")
|
||||||
return errs
|
return errs
|
||||||
|
|
||||||
|
|
||||||
default_app_config = 'pretix.plugins.paypal.PaypalApp'
|
default_app_config = 'pretix.plugins.paypal.PaypalApp'
|
||||||
|
|||||||
@@ -27,4 +27,5 @@ class ReportsApp(AppConfig):
|
|||||||
errs.append("Python package 'reportlab' is not installed.")
|
errs.append("Python package 'reportlab' is not installed.")
|
||||||
return errs
|
return errs
|
||||||
|
|
||||||
|
|
||||||
default_app_config = 'pretix.plugins.reports.ReportsApp'
|
default_app_config = 'pretix.plugins.reports.ReportsApp'
|
||||||
|
|||||||
@@ -27,4 +27,5 @@ class TicketOutputPdfApp(AppConfig):
|
|||||||
errs.append("Python package 'reportlab' is not installed.")
|
errs.append("Python package 'reportlab' is not installed.")
|
||||||
return errs
|
return errs
|
||||||
|
|
||||||
|
|
||||||
default_app_config = 'pretix.plugins.ticketoutputpdf.TicketOutputPdfApp'
|
default_app_config = 'pretix.plugins.ticketoutputpdf.TicketOutputPdfApp'
|
||||||
|
|||||||
Reference in New Issue
Block a user