Skip to content

Commit caa1370

Browse files
committed
1 parent c35e312 commit caa1370

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

src/imcflibs/imagej/misc.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -450,6 +450,12 @@ def write_ordereddict_to_csv(out_file, content):
450450
List of OrderedDict objects representing the data rows to be written.
451451
All dictionaries must have the same keys.
452452
453+
Notes
454+
-----
455+
- Uses the semicolon charachter (`;`) as delimiter.
456+
- When appending to an existing file, the column structure has to match.
457+
- Output file is opened in binary mode for compatibility.
458+
453459
Examples
454460
--------
455461
>>> from collections import OrderedDict
@@ -464,12 +470,6 @@ def write_ordereddict_to_csv(out_file, content):
464470
id;name;value
465471
1;Sample A;42.5
466472
2;Sample B;37.2
467-
468-
Notes
469-
-----
470-
- Uses the semicolon charachter (`;`) as delimiter.
471-
- When appending to an existing file, the column structure has to match.
472-
- Output file is opened in binary mode for compatibility.
473473
"""
474474

475475
# Check if the output file exists

0 commit comments

Comments
 (0)