robotpy / robotpy-commands-v2

Python implementation of the WPILib Command Framework (2020+)
Other
2 stars 14 forks source link

Improve typing support by adding a py.typed marker #57

Closed cwstryker closed 3 months ago

cwstryker commented 3 months ago

For robotpy applications to make use of the type hints in the robotpy-commands-v2 package, the package needs to indicate to the type checker that it supports type hints. Adding a py.typed marker to the package files will mark the package as supporting type hints.

auscompgeek commented 3 months ago

Thank you!