Commit 16afc89b by stv

Fix PEP8: E241 multiple spaces after ','

parent 500499b6
...@@ -11,8 +11,13 @@ def query_yes_no(question, default="yes"): ...@@ -11,8 +11,13 @@ def query_yes_no(question, default="yes"):
The "answer" return value is one of "yes" or "no". The "answer" return value is one of "yes" or "no".
""" """
valid = {"yes": True, "y": True, "ye": True, valid = {
"no": False, "n": False} "yes": True,
"y": True,
"ye": True,
"no": False,
"n": False,
}
if default is None: if default is None:
prompt = " [y/n] " prompt = " [y/n] "
elif default == "yes": elif default == "yes":
......
...@@ -377,7 +377,10 @@ def choose_transcripts(request): ...@@ -377,7 +377,10 @@ def choose_transcripts(request):
if item.sub != html5_id: # update sub value if item.sub != html5_id: # update sub value
item.sub = html5_id item.sub = html5_id
item.save_with_metadata(request.user) item.save_with_metadata(request.user)
response = {'status': 'Success', 'subs': item.sub} response = {
'status': 'Success',
'subs': item.sub,
}
return JsonResponse(response) return JsonResponse(response)
...@@ -408,7 +411,10 @@ def replace_transcripts(request): ...@@ -408,7 +411,10 @@ def replace_transcripts(request):
item.sub = youtube_id item.sub = youtube_id
item.save_with_metadata(request.user) item.save_with_metadata(request.user)
response = {'status': 'Success', 'subs': item.sub} response = {
'status': 'Success',
'subs': item.sub,
}
return JsonResponse(response) return JsonResponse(response)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment