Skip to content

Commit 0090057

Browse files
removed unnecessary import, improved docstrings
1 parent 1a5e612 commit 0090057

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

pyroSAR/drivers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -595,7 +595,7 @@ def outname_base(self, extensions=None):
595595
596596
Parameters
597597
----------
598-
extensions: list[str]
598+
extensions: list[str] or None
599599
the names of additional parameters to append to the basename, e.g. ``['orbitNumber_rel']``
600600
Returns
601601
-------

pyroSAR/gamma/util.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
from spatialist.ancillary import union, finder
3232

3333
from ..S1 import OSV
34-
from ..drivers import ID, identify, identify_many
34+
from ..drivers import ID, identify_many
3535
from . import ISPPar, Namespace, par2hdr
3636
from ..ancillary import multilook_factors, hasarg, groupby
3737
from pyroSAR.examine import ExamineSnap
@@ -453,8 +453,8 @@ def correctOSV(id, directory, osvdir=None, osvType='POE', timeout=20,
453453
If the OSV file is packed in a zip file it will be unpacked to a subdirectory `osv`.
454454
osvdir: str
455455
the directory of OSV files; subdirectories POEORB and RESORB are created automatically
456-
osvType: {'POE', 'RES'}
457-
the OSV type to be used
456+
osvType: str or List[str]
457+
the OSV type (POE|RES) to be used
458458
timeout: int or tuple or None
459459
the timeout in seconds for downloading OSV files as provided to :func:`requests.get`
460460
logpath: str or None

0 commit comments

Comments
 (0)