wearepal / data-science-types

Mypy stubs, i.e., type information, for numpy, pandas and matplotlib
Apache License 2.0
202 stars 51 forks source link

No overload variant of "subplots" matches argument type "bool" #227

Open uihsnv opened 3 years ago

uihsnv commented 3 years ago

When I perform the following:

from matplotlib.pyplot import subplots
FIG, AXES = subplots(constrained_layout=True)

I get the warning:

No overload variant of "subplots" matches argument type "bool".

Does that need to be added?