codebase: Remove multiple whitespaces after comma.

This commit is contained in:
derAnfaenger
2017-10-18 11:11:25 +02:00
committed by Tim Abbott
parent cc8cc8d9ae
commit cfadb43b93
2 changed files with 2 additions and 2 deletions

View File

@@ -333,7 +333,7 @@ def export_from_config(response, config, seed_object=None, context=None):
rows = list(query) rows = list(query)
elif config.id_source: elif config.id_source:
# In this mode, we are the figurative Blog, and we now # In this mode, we are the figurative Blog, and we now
# need to look at the current response to get all the # need to look at the current response to get all the
# blog ids from the Article rows we fetched previously. # blog ids from the Article rows we fetched previously.
model = config.model model = config.model

View File

@@ -344,7 +344,7 @@ def get_subject_based_on_event(event, payload):
return get_repo_name(payload) return get_repo_name(payload)
def get_event(request, payload, branches): def get_event(request, payload, branches):
# type: (HttpRequest, Dict[str, Any], Optional[Text]) -> Optional[str] # type: (HttpRequest, Dict[str, Any], Optional[Text]) -> Optional[str]
event = request.META['HTTP_X_GITLAB_EVENT'] event = request.META['HTTP_X_GITLAB_EVENT']
if event == 'Issue Hook': if event == 'Issue Hook':
action = payload['object_attributes'].get('action') action = payload['object_attributes'].get('action')