diff options
Diffstat (limited to 'tests/pyb/switch.py')
-rw-r--r-- | tests/pyb/switch.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/pyb/switch.py b/tests/pyb/switch.py index 4b74e0fd73..7c44adb136 100644 --- a/tests/pyb/switch.py +++ b/tests/pyb/switch.py @@ -1,6 +1,6 @@ from pyb import Switch -sw = pyb.Switch() +sw = Switch() print(sw()) sw.callback(print) sw.callback(None) |