Skip to content

Commit 735a1b3

Browse files
committed
pydisplay: testing.
1 parent 3052848 commit 735a1b3

File tree

2 files changed

+2
-41
lines changed

2 files changed

+2
-41
lines changed

micropython/pydisplay/displaybuf/displaybuf/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@
3333
except ImportError:
3434
import framebuf # type: ignore
3535

36-
if sys.implementation.name == "micropython":
36+
try:
3737
from ._viper import _bounce8, _bounce4
38-
else:
38+
except Exception:
3939

4040
def _bounce8(*args, **kwargs):
4141
raise NotImplementedError(

micropython/pydisplay/displaybuf/displaybuf/_viper.py

Lines changed: 0 additions & 39 deletions
This file was deleted.

0 commit comments

Comments
 (0)