Skip to content

Commit

Permalink
fix order of imports
Browse files Browse the repository at this point in the history
  • Loading branch information
mgrover1 committed Jan 3, 2024
1 parent 7751e80 commit a1ac544
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions tests/units/test_units.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,8 @@
import pandas as pd
import pytest

from metpy.testing import (assert_array_almost_equal, assert_array_equal,
assert_nan, assert_almost_equal)

from metpy.testing import (assert_almost_equal, assert_array_almost_equal, assert_array_equal,
assert_nan)

Check failure on line 12 in tests/units/test_units.py

View workflow job for this annotation

GitHub Actions / Flake8

[flake8] reported by reviewdog 🐶 I001 isort found an import in the wrong position Raw Output: ./tests/units/test_units.py:12:1: I001 isort found an import in the wrong position
from metpy.units import (check_units, concatenate, is_quantity,

Check failure on line 13 in tests/units/test_units.py

View workflow job for this annotation

GitHub Actions / Flake8

[flake8] reported by reviewdog 🐶 I005 isort found an unexpected missing import Raw Output: ./tests/units/test_units.py:13:1: I005 isort found an unexpected missing import
pandas_dataframe_to_unit_arrays, units)

Expand Down

0 comments on commit a1ac544

Please sign in to comment.