In for a penny in for a pound. Just wanted to mention that it is absolutely industry standard to use type hinting for everything in python these days. Not only does it make it easier on the developer but it is straight-up required for some libraries (such as dagster data engineering library or anything that is strongly dependent on data structure and validation).
https://github.com/teacherc/spheri-app/blob/99d1e39ad54c069bac628f94bf8525c6a45d08de/main.py#L31
In for a penny in for a pound. Just wanted to mention that it is absolutely industry standard to use type hinting for everything in python these days. Not only does it make it easier on the developer but it is straight-up required for some libraries (such as dagster data engineering library or anything that is strongly dependent on data structure and validation).
More info on type hints: https://peps.python.org/pep-0484/