Skip to content

Commit a0ca592

Browse files
committed
fix: WIP
1 parent 6b98d53 commit a0ca592

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/c2pa/c2pa.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -490,7 +490,7 @@ def _convert_to_py_string(value) -> str:
490490

491491
def _parse_operation_result_for_error(
492492
result: ctypes.c_void_p | None,
493-
check_error: bool = True) -> str | None:
493+
check_error: bool = True) -> Optional[str]:
494494
"""Helper function to handle string results from C2PA functions."""
495495
if not result: # pragma: no cover
496496
if check_error:

0 commit comments

Comments
 (0)