mirror of
https://github.com/pretix/pretix.git
synced 2026-05-06 15:24:02 +00:00
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:
|
||||
pass
|
||||
|
||||
|
||||
default_app_config = 'pretix.base.PretixBaseConfig'
|
||||
|
||||
@@ -51,6 +51,7 @@ class EventPluginSignal(django.dispatch.Signal):
|
||||
responses.append((receiver, response))
|
||||
return responses
|
||||
|
||||
|
||||
register_payment_providers = EventPluginSignal(
|
||||
providing_args=[]
|
||||
)
|
||||
|
||||
@@ -9,4 +9,5 @@ class PretixControlConfig(AppConfig):
|
||||
from .views import dashboards # noqa
|
||||
from . import logdisplay # noqa
|
||||
|
||||
|
||||
default_app_config = 'pretix.control.PretixControlConfig'
|
||||
|
||||
@@ -5,4 +5,5 @@ class PretixMultidomainConfig(AppConfig):
|
||||
name = 'pretix.multidomain'
|
||||
label = 'pretixmultidomain'
|
||||
|
||||
|
||||
default_app_config = 'pretix.multidomain.PretixMultidomainConfig'
|
||||
|
||||
@@ -27,4 +27,5 @@ class CheckinlistsApp(AppConfig):
|
||||
errs.append("Python package 'reportlab' is not installed.")
|
||||
return errs
|
||||
|
||||
|
||||
default_app_config = 'pretix.plugins.checkinlists.CheckinlistsApp'
|
||||
|
||||
@@ -27,4 +27,5 @@ class PaypalApp(AppConfig):
|
||||
errs.append("Python package 'paypalrestsdk' is not installed.")
|
||||
return errs
|
||||
|
||||
|
||||
default_app_config = 'pretix.plugins.paypal.PaypalApp'
|
||||
|
||||
@@ -27,4 +27,5 @@ class ReportsApp(AppConfig):
|
||||
errs.append("Python package 'reportlab' is not installed.")
|
||||
return errs
|
||||
|
||||
|
||||
default_app_config = 'pretix.plugins.reports.ReportsApp'
|
||||
|
||||
@@ -27,4 +27,5 @@ class TicketOutputPdfApp(AppConfig):
|
||||
errs.append("Python package 'reportlab' is not installed.")
|
||||
return errs
|
||||
|
||||
|
||||
default_app_config = 'pretix.plugins.ticketoutputpdf.TicketOutputPdfApp'
|
||||
|
||||
Reference in New Issue
Block a user