Skip to content

Commit

Permalink
Get only first output from create func (#321)
Browse files Browse the repository at this point in the history
  • Loading branch information
Callisto13 authored Dec 16, 2021
1 parent 45622b0 commit 7213b9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/tools/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ def create_device(config_file, org_id, project_id, device_name, userdata):
f"Creating device {cfg['device']['name']} with config {pretty}")

welder = Welder(token, cfg)
ip = welder.create_all()
ip = welder.create_all()[0]

key_dir = welder.key_dir
click.echo(
Expand Down

0 comments on commit 7213b9c

Please sign in to comment.