fix: add type: ignore for asyncpg import in permissions.py
Matches the pattern used in database.py for untyped asyncpg stubs.
This commit is contained in:
parent
983e592083
commit
6e2e57b443
1 changed files with 1 additions and 1 deletions
|
|
@ -1,6 +1,6 @@
|
||||||
"""Permission checking for shared memories."""
|
"""Permission checking for shared memories."""
|
||||||
|
|
||||||
import asyncpg
|
import asyncpg # type: ignore[import-untyped]
|
||||||
|
|
||||||
|
|
||||||
async def check_memory_permission(
|
async def check_memory_permission(
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue