Add type ignore comments for asyncpg imports to suppress mypy errors
This commit is contained in:
parent
3511b9805c
commit
d18eb52ccc
1 changed files with 2 additions and 2 deletions
|
|
@ -38,8 +38,8 @@ import pipmaster as pm
|
|||
if not pm.is_installed("asyncpg"):
|
||||
pm.install("asyncpg")
|
||||
|
||||
import asyncpg
|
||||
from asyncpg import Pool
|
||||
import asyncpg # type: ignore
|
||||
from asyncpg import Pool # type: ignore
|
||||
|
||||
|
||||
class PostgreSQLDB:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue