You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
mypy won't see any issues with that but after installing pandas-stubs and running it again
436
+
437
+
```
438
+
mypy round.py
439
+
```
440
+
441
+
we get the following error message
442
+
443
+
```
444
+
round.py:6: error: Argument "decimals" to "round" of "DataFrame" has incompatible type "DataFrame"; expected "Union[int, Dict[Union[int, str], int], Series]"
445
+
```
446
+
447
+
And after confirming with the [docs](https://pandas.pydata.org/docs/reference/api/pandas.DataFrame.round.html)
0 commit comments