Skip to content
This repository was archived by the owner on Oct 19, 2023. It is now read-only.

Commit c34942f

Browse files
authored
Merge pull request #182 from workingmonk/patch-1
Print statement causing failure in Python 2.7
2 parents 69bc685 + c3e1ddb commit c34942f

File tree

1 file changed

+1
-1
lines changed
  • google-assistant-sdk/googlesamples/assistant/library

1 file changed

+1
-1
lines changed

google-assistant-sdk/googlesamples/assistant/library/hotword.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ def register_device(project_id, credentials, device_model_id, device_id):
8989
r = session.get(device_url)
9090
print(device_url, r.status_code)
9191
if r.status_code == 404:
92-
print('Registering....', end='', flush=True)
92+
print('Registering....')
9393
r = session.post(base_url, data=json.dumps({
9494
'id': device_id,
9595
'model_id': device_model_id,

0 commit comments

Comments
 (0)