Skip to content

Commit

Permalink
Reorder imports
Browse files Browse the repository at this point in the history
  • Loading branch information
jongbinjung committed Oct 11, 2024
1 parent c14d1a6 commit e9a1886
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion tests/polyfill/test_polyfill.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import h3
import pytest

import h3
from h3 import H3ResDomainError

from .. import util as u
Expand Down
3 changes: 2 additions & 1 deletion tests/polyfill/test_polygon_class.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import h3
import pytest

import h3


def test_repr():
a = '8928308280fffff'
Expand Down
1 change: 0 additions & 1 deletion tests/polyfill/test_to_multipoly.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import h3


from .. import util as u


Expand Down
1 change: 0 additions & 1 deletion tests/test_apis/test_basic_int.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import h3.api.basic_int as h3


from .. import util as u


Expand Down
1 change: 0 additions & 1 deletion tests/test_apis/test_basic_str.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import h3.api.basic_str as h3


from .. import util as u


Expand Down
3 changes: 2 additions & 1 deletion tests/test_apis/test_collection_inputs.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
import numpy as np # only run this test suite if numpy is installed
import pytest

from h3.api import (
basic_int,
numpy_int,
memview_int,
numpy_int,
)

# todo: check when a copy is made, and when it isn't
Expand Down
3 changes: 2 additions & 1 deletion tests/test_apis/test_numpy_int.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import h3.api.numpy_int as h3
import numpy as np # only run this test suite if numpy is installed

import h3.api.numpy_int as h3

from .. import util as u


Expand Down

0 comments on commit e9a1886

Please sign in to comment.