diff --git a/src/compaction/landlab.py b/src/compaction/landlab.py index 085ce44..fa1199d 100644 --- a/src/compaction/landlab.py +++ b/src/compaction/landlab.py @@ -1,4 +1,5 @@ """Compact layers of sediment due to overlying load.""" + from landlab import Component # type: ignore from scipy.constants import g # type: ignore diff --git a/tests/test_compaction.py b/tests/test_compaction.py index 7a8eabb..87bb627 100644 --- a/tests/test_compaction.py +++ b/tests/test_compaction.py @@ -1,4 +1,5 @@ """Unit tests for compaction.""" + from io import StringIO import numpy as np # type: ignore diff --git a/tests/test_component.py b/tests/test_component.py index af736a6..49ab3d6 100644 --- a/tests/test_component.py +++ b/tests/test_component.py @@ -1,4 +1,5 @@ """Unit tests for compaction landlab component.""" + import numpy as np # type: ignore from landlab import RasterModelGrid # type: ignore from numpy.testing import assert_array_almost_equal # type: ignore