DEV Community

Discussion on: Guide: Type Hinting in Python

Collapse
 
zchtodd profile image
zchtodd

Nice guide to type hints. I've always been on the fence about it myself. I haven't tried it yet but mypy seems kinda like TypeScript in that it's adding optional type enforcement on top of an existing language.

Collapse
 
alphaharris profile image
Aaron Harris

Thanks! I'll let Giovanni know you liked it. Part of the allure is adding type checking to the CI workflow, thought I don't think this was specifically discussed in the article. A lot of these "tacked on" features seem to find their homes in linting and deployment.