We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8337487 commit 6447ac7Copy full SHA for 6447ac7
iot/api-client/manager/manager.py
@@ -209,8 +209,8 @@ def get_device(
209
device = client.projects().locations().registries().devices(
210
).get(name=device_name).execute()
211
212
- print 'Id : {}'.format(device.get('id'))
213
- print 'Name : {}'.format(device.get('name'))
+ print('Id : {}'.format(device.get('id')))
+ print('Name : {}'.format(device.get('name')))
214
print('Credentials:')
215
if device.get('credentials') is not None:
216
for credential in device.get('credentials'):
0 commit comments