Skip to content

Commit

Permalink
remove type ignore comment
Browse files Browse the repository at this point in the history
  • Loading branch information
huiwengoh committed Oct 2, 2024
1 parent dea1031 commit 0286dc6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cleanlab_studio/utils/tlm_calibrated.py
Original file line number Diff line number Diff line change
Expand Up @@ -158,8 +158,8 @@ def get_trustworthiness_score(
view documentation there for expected input arguments and outputs.
"""
try:
from sklearn.exceptions import NotFittedError # type: ignore
from sklearn.utils.validation import check_is_fitted # type: ignore
from sklearn.exceptions import NotFittedError
from sklearn.utils.validation import check_is_fitted
except ImportError:
raise ImportError(
"Cannot import scikit-learn which is required to use TLMCalibrated. "
Expand Down

0 comments on commit 0286dc6

Please sign in to comment.