daita-technologies / backend

Backend system for the DAITA platform.
http://app.daita.tech
GNU Affero General Public License v3.0
3 stars 1 forks source link

Static typing for Python code - mypy #163

Open pcaversaccio opened 2 years ago

pcaversaccio commented 2 years ago

We should implement a static type checker for our Python code. Python is a dynamic language, so usually, we will only see errors in our code when you attempt to run it. mypy is a static checker, so it finds bugs in our programs without even running them.

We need the following: