Skip to content

Commit 84dcf95

Browse files
committed
add ignore types
1 parent 73b2560 commit 84dcf95

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

prepline_general/api/general.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -441,9 +441,9 @@ def pipeline_api(
441441
)
442442
elif hi_res_model_name and hi_res_model_name in CHIPPER_MODEL_TYPES:
443443
with ChipperMemoryProtection():
444-
elements = partition(**partition_kwargs) # pyright: ignore[reportGeneralTypeIssues]
444+
elements = partition(**partition_kwargs) # type: ignore # pyright: ignore[reportGeneralTypeIssues]
445445
else:
446-
elements = partition(**partition_kwargs) # pyright: ignore[reportGeneralTypeIssues]
446+
elements = partition(**partition_kwargs) # type: ignore # pyright: ignore[reportGeneralTypeIssues]
447447

448448
except OSError as e:
449449
if isinstance(e.args[0], str) and (

0 commit comments

Comments
 (0)