Skip to content

Commit

Permalink
Fix circular import issues
Browse files Browse the repository at this point in the history
  • Loading branch information
seisman committed Dec 18, 2020
1 parent d8b3151 commit 11267db
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion pygmt/datasets/earth_relief.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,10 @@
"""
import xarray as xr

from .. import grdcut, which
from ..exceptions import GMTInvalidInput
from ..gridops import grdcut
from ..helpers import kwargs_to_strings
from ..modules import which


@kwargs_to_strings(region="sequence")
Expand Down
2 changes: 1 addition & 1 deletion pygmt/datasets/tutorial.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"""
import pandas as pd

from .. import which
from ..modules import which


def load_japan_quakes():
Expand Down

0 comments on commit 11267db

Please sign in to comment.