Skip to content

Commit 3d61460

Browse files
committed
updated imports
1 parent 85b57e0 commit 3d61460

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

pygmt/tests/test_grdcontour.py

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
from pygmt import Figure
99
from pygmt.datasets import load_earth_relief
1010
from pygmt.exceptions import GMTInvalidInput
11-
from pygmt.helpers.testing import check_figures_equal
1211

1312
TEST_DATA_DIR = os.path.join(os.path.dirname(__file__), "data")
1413
TEST_CONTOUR_FILE = os.path.join(TEST_DATA_DIR, "contours.txt")
@@ -46,7 +45,7 @@ def test_grdcontour_labels(grid):
4645
projection="W0/15c",
4746
pen=["a1p,red", "c0.5p,black"],
4847
label_placement="d6c",
49-
frame=True
48+
frame=True,
5049
)
5150

5251
fig.grdcontour(grid, **kwargs)
@@ -80,7 +79,7 @@ def test_grdcontour_file(grid):
8079
pen="0.5p,black",
8180
region=[-180, 180, -70, 70],
8281
projection="M15c",
83-
frame=True
82+
frame=True,
8483
)
8584
return fig
8685

@@ -100,9 +99,7 @@ def test_grdcontour_interval_file_full_opts(grid):
10099
"projection": "M10c",
101100
"cut": 10,
102101
}
103-
fig.grdcontour(
104-
**comargs, limit=(-25000, -1), pen=["a1p,blue", "c0.5p,blue"]
105-
)
102+
fig.grdcontour(**comargs, limit=(-25000, -1), pen=["a1p,blue", "c0.5p,blue"])
106103
fig.grdcontour(**comargs, limit=0, pen=["a1p,black", "c0.5p,black"], frame=True)
107104

108105
return fig

0 commit comments

Comments
 (0)