File tree Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Original file line number Diff line number Diff line change 77from ._version import *
88from sys import implementation as _implementation
99
10+ # Generic time tools:
11+ from . import timetools
1012
1113# Check the implementation to use
1214if _implementation .name == 'circuitpython' :
1315 # Use the CircuitPython version:
1416 from .implementations .circuitpy import *
17+
18+ # Import IR stuff:
19+ from . import timeout
20+ from . import irrx
21+
1522elif _implementation .name == 'cpython' :
1623 # Use the CPython version:
1724 from .implementations .cpy import *
2835 raise NotImplementedError (
2936 f"This library is not supported for the { _implementation .name } "
3037 "implementation of Python.\n "
31- "We do, however, support CircuitPython and CPython."
38+ "We do, however, support CircuitPython and CPython.\n "
39+ "If you would like to see support for this implementation, please "
40+ "open an issue at https://github.com/Windham-High-School/CubeServer-api-python/issues/new"
3241 )
You can’t perform that action at this time.
0 commit comments