Skip to content

Commit b1c976d

Browse files
authoredMar 12, 2025··
Chore Bumping all the dev dependencies to latest versions (#540)
* Bump black to 25.1.0 and run make check * Bump flake8 to 7.1.2 * Bump isort to 6.0.1 * Running make check with new isort * Bump mypy to 1.15 * Moving mypy config to pyproject.toml * Fix new mypy errors * mypy disallow_incomplete_defs = true * Bump sphinx-argparse to 0.5.2 * Fix Sphinx make docs warnings * Fix moved intersphinx url for yarl and multidict
1 parent c6937eb commit b1c976d

File tree

69 files changed

+621
-348
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

69 files changed

+621
-348
lines changed
 

‎Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ tests_websockets:
2424
pytest tests --websockets-only
2525

2626
check:
27-
isort --recursive $(SRC_PYTHON)
27+
isort $(SRC_PYTHON)
2828
black $(SRC_PYTHON)
2929
flake8 $(SRC_PYTHON)
3030
mypy $(SRC_PYTHON)

‎docs/code_examples/aiohttp_async_dsl.py

+2
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ async def main():
1717
# GQL will fetch the schema just after the establishment of the first session
1818
async with client as session:
1919

20+
assert client.schema is not None
21+
2022
# Instantiate the root of the DSL Schema as ds
2123
ds = DSLSchema(client.schema)
2224

0 commit comments

Comments
 (0)
Please sign in to comment.