Skip to content

Commit

Permalink
Fixed typo in README example (#56)
Browse files Browse the repository at this point in the history
  • Loading branch information
tkrebes authored Jun 10, 2023
1 parent 7b32e2f commit a4f679a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ The following is a basic example of using an **nisyscfg.Session** object.
>>> # Print user aliases for all National Instruments devices in the local system
>>> filter = session.create_filter()
>>> filter.is_present = True
>>> filter.is_in_product = True
>>> filter.is_ni_product = True
>>> filter.is_device = True
>>> for resource in session.find_hardware(filter):
>>> print(resource.expert_user_alias[0])

0 comments on commit a4f679a

Please sign in to comment.