aboutsummaryrefslogtreecommitdiff
path: root/examples/get_interface.py
diff options
context:
space:
mode:
Diffstat (limited to 'examples/get_interface.py')
-rw-r--r--examples/get_interface.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/get_interface.py b/examples/get_interface.py
index 331f650..0465223 100644
--- a/examples/get_interface.py
+++ b/examples/get_interface.py
@@ -3,7 +3,7 @@ from pymba import Vimba
if __name__ == '__main__':
- with Vimba() as vmb:
+ with Vimba() as vimba:
# provide interface index or id
- interface = vmb.interface(0)
+ interface = vimba.interface(0)
print(interface)