Files
led-controller/bridge-wifi/lib/microdot/helpers.py
2026-05-28 00:38:21 +12:00

9 lines
232 B
Python

try:
from functools import wraps
except ImportError: # pragma: no cover
# MicroPython does not currently implement functools.wraps
def wraps(wrapped):
def _(wrapper):
return wrapper
return _