Skip to content

Commit dd0e83d

Browse files
style: auto-fix linting issues
1 parent fb5ee23 commit dd0e83d

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

codeflash/verification/comparator.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -452,10 +452,10 @@ def comparator(orig: Any, new: Any, superset_obj: bool = False) -> bool:
452452
return orig == new
453453

454454
if HAS_NUMBA:
455-
import numba # noqa: PGH003
456-
from numba.core.dispatcher import Dispatcher # noqa: PGH003
457-
from numba.typed import Dict as NumbaDict # noqa: PGH003
458-
from numba.typed import List as NumbaList # noqa: PGH003
455+
import numba
456+
from numba.core.dispatcher import Dispatcher
457+
from numba.typed import Dict as NumbaDict
458+
from numba.typed import List as NumbaList
459459

460460
# Handle numba typed List
461461
if isinstance(orig, NumbaList):

0 commit comments

Comments
 (0)