1
0
mirror of https://github.com/EDCD/EDMarketConnector.git synced 2025-04-12 15:27:14 +03:00

.mypy.ini: Set follow_imports explicitly to normal default

We'd been using `skip` because when we started with mypy next to nothing
passed it, and checking one file would spew errors with other files and it
just wasn't conducive to making at least *some* progress.

But now we should have every single file passing, so this is the right thing
to do.
This commit is contained in:
Athanasius 2022-12-23 13:02:40 +00:00
parent 90183554ef
commit a499a22383
No known key found for this signature in database
GPG Key ID: 772697E181BB2767

View File

@ -1,5 +1,5 @@
[mypy]
follow_imports = skip
follow_imports = normal
ignore_missing_imports = True
scripts_are_modules = True
; Without this bare `mypy <file>` may get warnings for e.g.