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-21 09:28:06 +01:00
parent 3e42042156
commit ce0b3511e6

View File

@@ -19,14 +19,16 @@ class NotificationApiClient(BaseAPIClient):
params=params
)
def get_notifications_for_service(self,
service_id,
job_id=None,
template_type=None,
status=None,
page=None,
page_size=None,
limit_days=None):
def get_notifications_for_service(
self,
service_id,
job_id=None,
template_type=None,
status=None,
page=None,
page_size=None,
limit_days=None
):
params = {}
if page is not None:
params['page'] = page