We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
misc
1 parent 75c6bd7 commit 722577dCopy full SHA for 722577d
1 file changed
āscipy-stubs/stats/_multicomp.pyiā
@@ -1,3 +1,14 @@
1
+# Locally, mypy reports:
2
+#
3
+# > error: Cannot use a covariant type variable as a parameter [misc]
4
5
+# for `_mean_control: _StatT_co`. But for some reason, this isn't reported in any of
6
+# the CI jobs. We therefore cannot use `# type:ignore[misc]` here, because that would
7
+# then be reported as an unused ignore in those CI jobs, and are forced to disable
8
+# [misc] for the entire module.
9
10
+# mypy: disable-error-code=misc
11
+
12
from dataclasses import dataclass
13
from typing import Generic, overload
14
from typing_extensions import TypeVar
0 commit comments