-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add Misssing Type Annotations #22
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
A few bits of feedback, thanks for the PR!
adafruit_max31856.py
Outdated
def reference_temperature_thresholds(self, val): # pylint: disable=invalid-name | ||
def reference_temperature_thresholds( # pylint: disable=invalid-name, | ||
self, val: Tuple[float, float] | ||
) -> None: # pylint: disable=invalid-name |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same thing here, I think it's this second # pylint: disable=invalid-name
you can get rid of.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Awesome, thanks for another great PR!
Updating https://github.com/adafruit/Adafruit_CircuitPython_DS3502 to 1.1.15 from 1.1.14: > Merge pull request adafruit/Adafruit_CircuitPython_DS3502#12 from tcfranks/main Updating https://github.com/adafruit/Adafruit_CircuitPython_IL0373 to 1.3.17 from 1.3.16: > Merge pull request adafruit/Adafruit_CircuitPython_IL0373#27 from tcfranks/main Updating https://github.com/adafruit/Adafruit_CircuitPython_LIS2MDL to 2.1.18 from 2.1.17: > Merge pull request adafruit/Adafruit_CircuitPython_LIS2MDL#16 from tcfranks/main Updating https://github.com/adafruit/Adafruit_CircuitPython_MAX31856 to 0.11.3 from 0.11.2: > Merge pull request adafruit/Adafruit_CircuitPython_MAX31856#22 from tcfranks/main Updating https://github.com/adafruit/Adafruit_CircuitPython_BitbangIO to 1.3.9 from 1.3.8: > Merge pull request adafruit/Adafruit_CircuitPython_BitbangIO#24 from tcfranks/main
resolves #15
submitted for review / comment