10000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our doc 8000 umentation.
There was an error while loading. Please reload this page.
1 parent 660b9f0 commit c5f7249Copy full SHA for c5f7249
speech/cloud-client/transcribe_dlp.py
@@ -1,6 +1,6 @@
1
#!/usr/bin/env python
2
3
-# Copyright 2018 Google Inc. All Rights Reserved.
+# Copyright 2019 Google Inc. All Rights Reserved.
4
#
5
# Licensed under the Apache License, Version 2.0 (the "License");
6
# you may not use this file except in compliance with the License.
@@ -77,7 +77,7 @@ def deidentify(file_name, project_id):
77
# Detects speech in the audio file
78
response = speech_client.recognize(config, audio)
79
80
- transcript = ""
+ transcript = ''
81
82
for result in response.results:
83
transcript = transcript + result.alternatives[0].transcript
0 commit comments