Skip to content

Commit

Permalink
pre-commit fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
val-ismaili committed Mar 21, 2024
1 parent 6f385f5 commit 8830df3
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
3 changes: 2 additions & 1 deletion tests/test_activityhandler.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
import os

import pytest
from osmox import build, config, helpers
from shapely.geometry import Point, Polygon

from osmox import build, config, helpers

fixtures_root = os.path.abspath(os.path.join(os.path.dirname(__file__), "fixtures"))
toy_osm_path = os.path.join(fixtures_root, "toy.osm")
park_osm_path = os.path.join(fixtures_root, "park.osm")
Expand Down
3 changes: 2 additions & 1 deletion tests/test_autotree.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
import os

from osmox import build, helpers
from shapely.geometry import Point, Polygon

from osmox import build, helpers

root = os.path.abspath(os.path.join(os.path.dirname(__file__), "data"))
test_osm_path = os.path.join(root, "isle-of-man-latest.osm.pbf")

Expand Down
1 change: 1 addition & 0 deletions tests/test_config.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import os

import pytest

from osmox import config

root = os.path.abspath(os.path.join(os.path.dirname(__file__), "fixtures"))
Expand Down
3 changes: 2 additions & 1 deletion tests/test_helpers.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import pytest
from osmox import helpers
from shapely.geometry import Polygon

from osmox import helpers


@pytest.mark.parametrize(
"a,b,expected",
Expand Down

0 comments on commit 8830df3

Please sign in to comment.