Skip to content

Commit

Permalink
[style] Add space before comment (E261)
Browse files Browse the repository at this point in the history
  • Loading branch information
ftnext committed Apr 2, 2024
1 parent e5cb915 commit 283e7ec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions speech_recognition/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -1157,7 +1157,7 @@ def recognize_amazon(self, audio_data, bucket_name=None, access_key_id=None, sec

# Delete job.
try:
transcribe.delete_transcription_job(TranscriptionJobName=job_name) # cleanup
transcribe.delete_transcription_job(TranscriptionJobName=job_name) # cleanup
except Exception as exc:
print('Warning, could not clean up transcription: %s' % exc)
traceback.print_exc()
Expand All @@ -1170,7 +1170,7 @@ def recognize_amazon(self, audio_data, bucket_name=None, access_key_id=None, sec

# Delete job.
try:
transcribe.delete_transcription_job(TranscriptionJobName=job_name) # cleanup
transcribe.delete_transcription_job(TranscriptionJobName=job_name) # cleanup
except Exception as exc:
print('Warning, could not clean up transcription: %s' % exc)
traceback.print_exc()
Expand Down

0 comments on commit 283e7ec

Please sign in to comment.