diff options
Diffstat (limited to 'tests/pyb/extint.py')
-rw-r--r-- | tests/pyb/extint.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/pyb/extint.py b/tests/pyb/extint.py index 8b6bc5651..551060002 100644 --- a/tests/pyb/extint.py +++ b/tests/pyb/extint.py @@ -1,7 +1,7 @@ import pyb # test basic functionality -ext = pyb.ExtInt('X5', pyb.ExtInt.IRQ_RISING, pyb.Pin.PULL_DOWN, lambda l:print('line:', l)) +ext = pyb.ExtInt("X5", pyb.ExtInt.IRQ_RISING, pyb.Pin.PULL_DOWN, lambda l: print("line:", l)) ext.disable() ext.enable() print(ext.line()) |