Skip to content

Commit c7d8074

Browse files
committed
Drop deprecated decorator no_type_check_decorator
The upstream PR (python/cpython#106309) says this never got really implemented by type checkers.
1 parent dd2cce1 commit c7d8074

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

tests/dbus_service_mocks/base.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
import asyncio
44
from functools import wraps
5-
from typing import Any, no_type_check_decorator
5+
from typing import Any
66

77
from dbus_fast import Message
88
from dbus_fast.aio.message_bus import MessageBus
@@ -51,7 +51,6 @@ def dbus_method(name: str = None, disabled: bool = False, track_obj_path: bool =
5151
"""
5252
orig_decorator = method(name=name, disabled=disabled)
5353

54-
@no_type_check_decorator
5554
def decorator(func):
5655
calls: list[list[Any]] = []
5756

0 commit comments

Comments
 (0)