|
|
|
|
|
by prolepunk
2613 days ago
|
|
Type hinting is a standard feature since Python 3.6. https://docs.python.org/3/library/typing.html The thing about python, as overall language philosophy, is convention over enforcement. If you want your team to have a particular style and use certain features, then you should agree to do it and then use automated tools (like pep8, flake) to check that code complies with those rules, but it is up to you how you want to write the code. |
|