-
Notifications
You must be signed in to change notification settings - Fork 111
doc(mypy): Add type annotations to function definitions #86
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
doc(mypy): Add type annotations to function definitions #86
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.
Thanks! I've generalized what some args can take (which was always true).
@dhalbert Thanks for the review! There is an issue with the documentation build step of the workflow that I am trying to resolve. |
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.
👍
Updating https://github.com/adafruit/Adafruit_CircuitPython_IS31FL3741 to 1.2.0 from 1.1.4: > Merge pull request adafruit/Adafruit_CircuitPython_IS31FL3741#11 from rhooper/led_animation_compat > Merge pull request adafruit/Adafruit_CircuitPython_IS31FL3741#12 from jsymons/change_default Updating https://github.com/adafruit/Adafruit_CircuitPython_Seesaw to 1.10.2 from 1.10.1: > Merge pull request adafruit/Adafruit_CircuitPython_seesaw#87 from kattni/tweaks Updating https://github.com/adafruit/Adafruit_CircuitPython_HID to 5.1.2 from 5.1.1: > Merge pull request adafruit/Adafruit_CircuitPython_HID#86 from careyk007/add_missing_type_annotations > Globally disabled consider-using-f-string pylint check
I have added the missing type annotations identified by the command
mypy --disallow-untyped-defs --disallow-incomplete-defs --ignore-missing-imports adafruit_hid
Closes #83