Skip to content

Commit e168e9c

Browse files
committed
fix: mypy issue
1 parent 01ce52d commit e168e9c

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

src/taskiq_pg/psqlpy/broker.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
import typing as tp
66
from dataclasses import dataclass
77

8-
import psqlpy
9-
from psqlpy.extra_types import JSONB
8+
import psqlpy # type: ignore[import-not-found]
9+
from psqlpy.extra_types import JSONB # type: ignore[import-not-found]
1010
from taskiq import AckableMessage, AsyncBroker, AsyncResultBackend, BrokerMessage
1111

1212
from taskiq_pg.psqlpy.queries import (

src/taskiq_pg/psqlpy/result_backend.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
import typing as tp
44

5-
from psqlpy import ConnectionPool
6-
from psqlpy.exceptions import RustPSQLDriverPyBaseError
5+
from psqlpy import ConnectionPool # type: ignore[import-not-found]
6+
from psqlpy.exceptions import RustPSQLDriverPyBaseError # type: ignore[import-not-found]
77
from taskiq import AsyncResultBackend, TaskiqResult
88
from taskiq.compat import model_dump, model_validate
99
from taskiq.serializers import PickleSerializer

uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)