The straleio Python SDK works but doesn't ship with py.typed marker or inline type annotations for all public methods. Adding proper type hints improves the developer experience in VS Code and PyCharm.
What to do:
- Add
py.typed marker file to packages/sdk-python/straleio/
- Add type annotations to the main
Strale class methods (do(), suggest(), etc.)
- Verify with
mypy --strict on the package
Good first issue — no logic changes, just type annotations.
The
straleioPython SDK works but doesn't ship withpy.typedmarker or inline type annotations for all public methods. Adding proper type hints improves the developer experience in VS Code and PyCharm.What to do:
py.typedmarker file topackages/sdk-python/straleio/Straleclass methods (do(),suggest(), etc.)mypy --stricton the packageGood first issue — no logic changes, just type annotations.