Skip to content

Commit 8830df3

Browse files
committed
pre-commit fixes
1 parent 6f385f5 commit 8830df3

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

tests/test_activityhandler.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
import os
22

33
import pytest
4-
from osmox import build, config, helpers
54
from shapely.geometry import Point, Polygon
65

6+
from osmox import build, config, helpers
7+
78
fixtures_root = os.path.abspath(os.path.join(os.path.dirname(__file__), "fixtures"))
89
toy_osm_path = os.path.join(fixtures_root, "toy.osm")
910
park_osm_path = os.path.join(fixtures_root, "park.osm")

tests/test_autotree.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
import os
22

3-
from osmox import build, helpers
43
from shapely.geometry import Point, Polygon
54

5+
from osmox import build, helpers
6+
67
root = os.path.abspath(os.path.join(os.path.dirname(__file__), "data"))
78
test_osm_path = os.path.join(root, "isle-of-man-latest.osm.pbf")
89

tests/test_config.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import os
22

33
import pytest
4+
45
from osmox import config
56

67
root = os.path.abspath(os.path.join(os.path.dirname(__file__), "fixtures"))

tests/test_helpers.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
import pytest
2-
from osmox import helpers
32
from shapely.geometry import Polygon
43

4+
from osmox import helpers
5+
56

67
@pytest.mark.parametrize(
78
"a,b,expected",

0 commit comments

Comments
 (0)