Skip to content

Commit

Permalink
Small docstring fix for GroupedCollectionExtractor
Browse files Browse the repository at this point in the history
  • Loading branch information
nickrsan committed Feb 9, 2024
1 parent 3190dcb commit 4011021
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions eedl/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,11 @@ class GroupedCollectionExtractor():
You'll need to pay special attention to the parameters to the initialization function.
Args:
skip_existing (bool):
keep_image_objects (bool): Whether to store the EEDLImage objects as part of this class, so they can be
Attributes:
on_error (str, "log"): What to do when an error occurs. Options are "log", which writes it to string and disk,
and "raise" which raises the error as an exception and stops execution of the class.
skip_existing (bool, True):
keep_image_objects (bool, False): Whether to store the EEDLImage objects as part of this class, so they can be
accessed when it's done. We don't just to not use the RAM on large exports. This does *not* specify
anything about whether the image data is written to disk - that happens automatically and by default
"""
Expand Down

0 comments on commit 4011021

Please sign in to comment.