Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 527 Bytes

File metadata and controls

24 lines (18 loc) · 527 Bytes
title weight cSpell:ignore
Using mypy
120
mypy

If you're using mypy, you'll need to turn on namespace packages, otherwise mypy won't be able to run correctly.

To turn on namespace packages, do one of the following:

Add the following to your project configuration file:

[tool.mypy]
namespace_packages = true

Or, use a command-line switch:

mypy --namespace-packages