Skip to content

Commit

Permalink
fix imports
Browse files Browse the repository at this point in the history
  • Loading branch information
nonnontrivial committed May 3, 2024
1 parent aecac6a commit 36148cf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion api/api/tests/test_pollution_api.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import pytest
from fastapi.testclient import TestClient

from api import app
from api.main import app

client = TestClient(app)
API_PREFIX = "/api/v1"
Expand Down
2 changes: 1 addition & 1 deletion api/api/tests/test_prediction_api.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import pytest
from fastapi.testclient import TestClient

from api import app
from api.main import app

client = TestClient(app)
API_PREFIX = "/api/v1"
Expand Down

0 comments on commit 36148cf

Please sign in to comment.