Skip to content

Commit

Permalink
suppress type error
Browse files Browse the repository at this point in the history
  • Loading branch information
smacke committed Nov 23, 2023
1 parent 03982cb commit cf27e49
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/ipyflow/data_model/symbol.py
Original file line number Diff line number Diff line change
Expand Up @@ -1215,7 +1215,7 @@ def _array_equal(obj1: Any, obj2: Any) -> bool:
import numpy as np

try:
return np.alltrue(obj1 == obj2)
return np.alltrue(obj1 == obj2) # type: ignore
except: # noqa
return False

Expand Down

0 comments on commit cf27e49

Please sign in to comment.