mypy complains with: `/home/tabbott/foo.py:4: error: Unsupported operand types for + ("int" and "float")` with the following code: ``` foo = 0 foo += 0.5 ``` While one can work around this by initializing to 0.0, it seems worth thinking about if mypy should accept this.