diff options
Diffstat (limited to 'tests/pyb/accel.py')
-rw-r--r-- | tests/pyb/accel.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/pyb/accel.py b/tests/pyb/accel.py index 9aa60c185..7a5e072be 100644 --- a/tests/pyb/accel.py +++ b/tests/pyb/accel.py @@ -1,7 +1,7 @@ import pyb -if not hasattr(pyb, 'Accel'): - print('SKIP') +if not hasattr(pyb, "Accel"): + print("SKIP") raise SystemExit accel = pyb.Accel() |