Skip to content

Commit

Permalink
Fix f-string in example
Browse files Browse the repository at this point in the history
  • Loading branch information
dtmilano committed Oct 31, 2022
1 parent ced8b63 commit cfa578f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/helper/find-object
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ try:
print(helper.ui_object2.dump(oid=obj_ref.oid).desc)
except Exception as e:
print(f"I couldn't find any view matching selector={body}")
print("But found other {len(helper.kato.selectors)} potential ones.")
print(f'But found other {len(helper.kato.selectors)} potential ones.')
print('Choosing a closest selector from such potential list:')
body = next(iter(helper.kato.distances.values()))
obj_ref = helper.ui_device.find_object(body=body)
Expand Down

0 comments on commit cfa578f

Please sign in to comment.