Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 9d40e44

Browse files
committed
Require mypy[dmypy], update comment
1 parent c5bdc07 commit 9d40e44

4 files changed

Lines changed: 298 additions & 143 deletions

File tree

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ classifiers = [
3333
]
3434
keywords = ["mypy", "dmypy", "idle", "extension", "development", "daemon"]
3535
dependencies = [
36-
"mypy~=1.16.0",
36+
"mypy[dmypy]~=1.16.1",
3737
'orjson; implementation_name == "cpython"',
3838
"trio~=0.30.0",
3939
]
@@ -54,6 +54,7 @@ tools = [
5454
'black>=24.10.0; implementation_name == "cpython"',
5555
"ruff>=0.9.2",
5656
"codespell>=2.3.0",
57+
"pre-commit>=4.2.0",
5758
]
5859

5960
[project.urls]

src/idlemypyextension/client.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -221,6 +221,8 @@ async def _request_linux(
221221
request_arguments: str,
222222
timeout: float | None = None, # noqa: ASYNC109
223223
) -> Response:
224+
"""Request from daemon on linux/unix."""
225+
224226
def find_frame_in_buffer(
225227
buffer: bytearray,
226228
) -> tuple[bytearray, bytearray | None]:

src/idlemypyextension/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
from __future__ import annotations
66

77
# IDLE Extension Utilities
8-
# Copyright (C) 2023-2024 CoolCat467
8+
# Copyright (C) 2023-2025 CoolCat467
99
#
1010
# This program is free software: you can redistribute it and/or modify
1111
# it under the terms of the GNU General Public License as published by

0 commit comments

Comments
 (0)