Skip to content

Commit

Permalink
Fix mypy
Browse files Browse the repository at this point in the history
  • Loading branch information
qubixes committed Jun 17, 2024
1 parent 9e7bab2 commit f2bed34
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions metasyncontrib/disclosure/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
import polars as pl

try:
from numpy.core._exceptions import UFuncTypeError
from numpy.core._exceptions import UFuncTypeError # type: ignore
except ImportError:
from numpy._core._exceptions import UFuncTypeError
from numpy._core._exceptions import UFuncTypeError # type: ignore


def _compute_dominance(block_values, reverse=False):
Expand Down

0 comments on commit f2bed34

Please sign in to comment.