We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f15a715 commit e77144dCopy full SHA for e77144d
circuitpython_typing/io.py
@@ -38,7 +38,11 @@ def value(self) -> float:
38
on the specifics of the class.
39
"""
40
41
+ # TODO: this should be `value(self, input_value: float, /)` but can't
42
+ # because currently mpy files are built and the `/` param isn't supported
43
+ # in micro-python.
44
+ # https://github.com/adafruit/Adafruit_CircuitPython_Typing/issues/36
45
# pylint: disable=no-self-use,unused-argument
46
@value.setter
- def value(self, input_value: float, /):
47
+ def value(self, input_value: float):
48
...
0 commit comments