Skip to content

Commit

Permalink
Update __init__.py
Browse files Browse the repository at this point in the history
  • Loading branch information
leiyangleon authored Oct 15, 2019
1 parent 11c4590 commit 0f0dd9a
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion geo_autoRIFT/geogrid/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,10 @@
# return PySplitRangeSpectrum()


from .Geogrid import Geogrid
from .GeogridOptical import GeogridOptical

try:
from .Geogrid import Geogrid
except ImportError:
# this means ISCE support not available. Don't raise error. Allow standalone use
pass

0 comments on commit 0f0dd9a

Please sign in to comment.