Make indentation more sensible

Starting arguments on their own line and putting the closing parenthesis
on it’s own line because any subsequent changes to the arguments diff
cleanly (ie without touching any other lines).
This commit is contained in:
Chris Hill-Scott
2016-09-23 09:43:25 +01:00
parent e757c6463c
commit b36d0ff552

View File

@@ -228,14 +228,16 @@ def get_notifications(filter_dict=None):
@statsd(namespace="dao")
def get_notifications_for_service(service_id,
filter_dict=None,
page=1,
page_size=None,
limit_days=None,
key_type=None,
personalisation=False,
include_jobs=False):
def get_notifications_for_service(
service_id,
filter_dict=None,
page=1,
page_size=None,
limit_days=None,
key_type=None,
personalisation=False,
include_jobs=False
):
if page_size is None:
page_size = current_app.config['PAGE_SIZE']