We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 91c624f commit c682f96Copy full SHA for c682f96
.github/workflows/test.yml
@@ -49,6 +49,9 @@ jobs:
49
miniconda-version: "latest"
50
- name: Install numpy
51
run: conda install numpy=${{ matrix.numpy-version }}
52
+ - name: Check static typing v1
53
+ if: always()
54
+ run: make v1-type-check
55
- name: Check static typing
56
if: always()
- run: make v1-type-check
57
+ run: make type-check
mapie_v1/regression.py
@@ -97,7 +97,7 @@ def __init__(
97
conformity_score: Union[str, BaseRegressionScore] = "absolute",
98
prefit: bool = True,
99
n_jobs: Optional[int] = None,
100
- verbose: int = 0,
+ verbose = 0,
101
) -> None:
102
check_estimator_fit_predict(estimator)
103
self._estimator = estimator
0 commit comments