Skip to content

Commit 06f7d4c

Browse files
authored
Merge pull request #95 from opengisch/fix-typing-backward-compatibility
fix: update return type annotation for project seed method to Optional[str]
2 parents 4d00171 + cb7c3c2 commit 06f7d4c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

qfieldcloud_sdk/sdk.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -427,7 +427,7 @@ def get_project_seed_xlsform(
427427
self,
428428
project_id: str,
429429
destination_dir: str,
430-
) -> str | None:
430+
) -> Optional[str]:
431431
"""Get project seed XLSForm file content.
432432
433433
Args:

0 commit comments

Comments
 (0)