Skip to content

Commit

Permalink
remove redundant types in docstring of save method (#488)
Browse files Browse the repository at this point in the history
  • Loading branch information
zigaLuksic committed Oct 5, 2022
1 parent 598a234 commit 9751283
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions core/eolearn/core/eodata.py
Original file line number Diff line number Diff line change
Expand Up @@ -579,18 +579,13 @@ def save(
"""Method to save an EOPatch from memory to a storage.
:param path: A location where to save EOPatch. It can be either a local path or a remote URL path.
:type path: str
:param features: A collection of features types specifying features of which type will be saved. By default,
all features will be saved.
:type features: list(FeatureType) or list((FeatureType, str)) or ...
:param overwrite_permission: A level of permission for overwriting an existing EOPatch
:type overwrite_permission: OverwritePermission or int
:param compress_level: A level of data compression and can be specified with an integer from 0 (no compression)
to 9 (highest compression).
:type compress_level: int
:param filesystem: An existing filesystem object. If not given it will be initialized according to the `path`
parameter.
:type filesystem: fs.FS or None
"""
if filesystem is None:
filesystem = get_filesystem(path, create=True)
Expand Down

0 comments on commit 9751283

Please sign in to comment.