Skip to content

Commit f6adff0

Browse files
authored
Assumed typo fix in getting_started.rst
Can't reference target_info before it's assigned and from looking at `target.py` the expected parameter is the `target_id`.
1 parent f4525a7 commit f6adff0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

docs/getting_started.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,7 @@ multiple commands concurrently.
286286
return response
287287
288288
target_id = target.TargetID('F86FCB9B3890EB413FAC5DD9DD150E6F')
289-
target_info = run_command(target.get_target_info(target_info))
289+
target_info = run_command(target.get_target_info(target_id))
290290
print(target_info)
291291
292292
The script above prints something like this:

0 commit comments

Comments
 (0)