Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove import for goldstein and filtering from top level __init_.py #530

Merged
merged 1 commit into from
Jan 17, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions src/dolphin/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,3 @@
from ._log import *
from ._show_versions import *
from ._types import *
from .goldstein import goldstein
from .interpolation import interpolate
2 changes: 1 addition & 1 deletion src/dolphin/timeseries.py
Original file line number Diff line number Diff line change
Expand Up @@ -953,7 +953,7 @@ def invert_unw_network(

"""
if ifg_date_pairs is None:
ifg_date_pairs = [get_dates(f) for f in unw_file_list]
ifg_date_pairs = [get_dates(f)[:2] for f in unw_file_list]

try:
# Ensure it's a list of pairs
Expand Down
4 changes: 3 additions & 1 deletion src/dolphin/unwrap/_unwrap.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,10 @@
import numpy as np
from tqdm.auto import tqdm

from dolphin import goldstein, interpolate, io
from dolphin import io
from dolphin._types import Filename
from dolphin.goldstein import goldstein
from dolphin.interpolation import interpolate
from dolphin.utils import DummyProcessPoolExecutor, full_suffix
from dolphin.workflows import UnwrapMethod, UnwrapOptions

Expand Down
Loading