Skip to content

Commit 0b41059

Browse files
committed
fix: absolute imports instead of relative
1 parent a6f3ce8 commit 0b41059

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,4 +162,4 @@ cython_debug/
162162
#.idea/
163163

164164
# vscode
165-
.vscode
165+
.vscode

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ test: ## Run the tests
8383
@echo "=> Running test cases"
8484
@$(ENV_PREFIX)pytest tests
8585
@echo "=> Tests complete"
86-
86+
8787

8888
.PHONY: check-all
8989
check-all: lint test coverage ## Run all linting, tests, and coverage checks

litestar_asyncpg/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from __future__ import annotations
22

3-
from config import AsyncpgConfig, PoolConfig
4-
from plugin import AsyncpgPlugin
3+
from litestar_asyncpg.config import AsyncpgConfig, PoolConfig
4+
from litestar_asyncpg.plugin import AsyncpgPlugin
55

66
__all__ = ("AsyncpgConfig", "PoolConfig", "AsyncpgPlugin")

litestar_asyncpg/plugin.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
if TYPE_CHECKING:
99
from litestar.config.app import AppConfig
1010

11-
from .config import AsyncpgConfig
11+
from litestar_asyncpg.config import AsyncpgConfig
1212

1313

1414
class SlotsBase:

0 commit comments

Comments
 (0)