sharing/csv separator and properties overlay

This commit is contained in:
Peter Bieringer
2026-02-28 07:44:52 +01:00
parent b33f78344b
commit 9b6f6b2cd6
3 changed files with 13 additions and 7 deletions

View File

@@ -958,7 +958,8 @@ class BaseSharing:
if output_format == "csv":
writer.writeheader()
for entry in answer['Content']:
writer.writerow(entry)
# TODO: Argument 1 to "writerow" of "DictWriter" has incompatible type "str"; expected "Mapping[str, Any]" [arg-type]
writer.writerow(entry) # type: ignore[arg-type]
if output_format == "csv":
answer_array.append(csv.getvalue())
else: