From 404a96baaf9470eb97e551e0da359bb3b5309cb9 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 13 Jan 2026 19:25:35 +0000 Subject: [PATCH] Add asgiref as a dependency to fix pylint import error Co-authored-by: johndoe6345789 <224850594+johndoe6345789@users.noreply.github.com> --- poetry.lock | 20 +++++++++++++++++++- pyproject.toml | 1 + 2 files changed, 20 insertions(+), 1 deletion(-) diff --git a/poetry.lock b/poetry.lock index 223d526..00d4f36 100644 --- a/poetry.lock +++ b/poetry.lock @@ -203,6 +203,24 @@ typing_extensions = {version = ">=4.5", markers = "python_version < \"3.13\""} [package.extras] trio = ["trio (>=0.31.0) ; python_version < \"3.10\"", "trio (>=0.32.0) ; python_version >= \"3.10\""] +[[package]] +name = "asgiref" +version = "3.11.0" +description = "ASGI specs, helper code, and adapters" +optional = false +python-versions = ">=3.9" +groups = ["main"] +files = [ + {file = "asgiref-3.11.0-py3-none-any.whl", hash = "sha256:1db9021efadb0d9512ce8ffaf72fcef601c7b73a8807a1bb2ef143dc6b14846d"}, + {file = "asgiref-3.11.0.tar.gz", hash = "sha256:13acff32519542a1736223fb79a715acdebe24286d98e8b164a73085f40da2c4"}, +] + +[package.dependencies] +typing_extensions = {version = ">=4", markers = "python_version < \"3.11\""} + +[package.extras] +tests = ["mypy (>=1.14.0)", "pytest", "pytest-asyncio"] + [[package]] name = "async-timeout" version = "5.0.1" @@ -2637,4 +2655,4 @@ propcache = ">=0.2.1" [metadata] lock-version = "2.1" python-versions = "^3.10" -content-hash = "8429ddb4b66ee394f4f5e64476836ff989878ac1481adf89bd2d9bf0998dc370" +content-hash = "51e693c8165f06e26fcc72ac449e0f120cd8e559e9e8260ba37e91df70361e79" diff --git a/pyproject.toml b/pyproject.toml index 799a0cc..bf69035 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -18,6 +18,7 @@ flask = "^2.3.3" slack-sdk = "^3.39.0" discord-py = "^2.6.4" jsonschema = "^4.10.3" +asgiref = "^3.7.0" [build-system] requires = ["poetry-core"]