Skip to content

Commit c682f96

Browse files
test
1 parent 91c624f commit c682f96

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

.github/workflows/test.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,9 @@ jobs:
4949
miniconda-version: "latest"
5050
- name: Install numpy
5151
run: conda install numpy=${{ matrix.numpy-version }}
52+
- name: Check static typing v1
53+
if: always()
54+
run: make v1-type-check
5255
- name: Check static typing
5356
if: always()
54-
run: make v1-type-check
57+
run: make type-check

mapie_v1/regression.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ def __init__(
9797
conformity_score: Union[str, BaseRegressionScore] = "absolute",
9898
prefit: bool = True,
9999
n_jobs: Optional[int] = None,
100-
verbose: int = 0,
100+
verbose = 0,
101101
) -> None:
102102
check_estimator_fit_predict(estimator)
103103
self._estimator = estimator

0 commit comments

Comments
 (0)