Annotating a decorator with generic Protocols causes “arg-type” (incompatible type) error involving `Never`

I’m trying to implement and annotate a decorator for functions without keyword arguments (but with variable number of arguments) using typing‘s Protocol as user-defined Generic types.

But MyPy issues me the following errors (repeated in the MRE above the lines causing it):

  • error: Argument 1 to "my_decorator" has incompatible type "Callable[[], int]"; expected "FunctionToDecorate[Never, Never]" [arg-type].

  • error: Argument 1 to "my_decorator" has incompatible type "Callable[[int], int]"; expected "FunctionToDecorate[Never, Never]" [arg-type].

  • error: Argument 1 to "my_decorator" has incompatible type "Callable[[int, Any], Any]"; expected "FunctionToDecorate[Never, Never]" [arg-type].

What is it caused by and how to solve it?

Is it caused by the way I use ParamSpec in my Protocols?

Why does it involve Never and why are the received types not consistent with the expected FunctionToDecorate[Never, Never]?

MRE (MyPy playground here):

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<code>#!/usr/bin/env python3.10
from typing import Protocol, ParamSpec, Generic, TypeVar
T = TypeVar("T", covariant=True)
P = ParamSpec("P")
# Callable types (as Protocols):
class FunctionToDecorate(Generic[T, P], Protocol):
def __call__(self, *args: P.args) -> T: ...
class DecoratedFunction(Generic[T, P], Protocol):
def __call__(self, *args: P.args) -> T: ...
# The decorator
def my_decorator(f: FunctionToDecorate[T, P]) -> DecoratedFunction[T, P]:
def my_decorated_function(*args) -> T:
return f(*args)
return my_decorated_function
# error: Argument 1 to "my_decorator" has incompatible type "Callable[[], int]"; expected "FunctionToDecorate[Never, Never]" [arg-type]
@my_decorator
def get_val() -> int:
return 1
# error: Argument 1 to "my_decorator" has incompatible type "Callable[[int], int]"; expected "FunctionToDecorate[Never, Never]" [arg-type]
@my_decorator
def double_val(val: int) -> int:
return val * 2
# error: Argument 1 to "my_decorator" has incompatible type "Callable[[int, Any], Any]"; expected "FunctionToDecorate[Never, Never]" [arg-type]
@my_decorator
def get_val_with_kwarg(val: int, kw=None):
return val
def main():
print("get_val()`s return value:", get_val())
print("double_val()`s return value:", double_val(2))
print("get_val_with_kwarg()`s return value:", get_val_with_kwarg(3))
if __name__ == "__main__":
main()
</code>
<code>#!/usr/bin/env python3.10 from typing import Protocol, ParamSpec, Generic, TypeVar T = TypeVar("T", covariant=True) P = ParamSpec("P") # Callable types (as Protocols): class FunctionToDecorate(Generic[T, P], Protocol): def __call__(self, *args: P.args) -> T: ... class DecoratedFunction(Generic[T, P], Protocol): def __call__(self, *args: P.args) -> T: ... # The decorator def my_decorator(f: FunctionToDecorate[T, P]) -> DecoratedFunction[T, P]: def my_decorated_function(*args) -> T: return f(*args) return my_decorated_function # error: Argument 1 to "my_decorator" has incompatible type "Callable[[], int]"; expected "FunctionToDecorate[Never, Never]" [arg-type] @my_decorator def get_val() -> int: return 1 # error: Argument 1 to "my_decorator" has incompatible type "Callable[[int], int]"; expected "FunctionToDecorate[Never, Never]" [arg-type] @my_decorator def double_val(val: int) -> int: return val * 2 # error: Argument 1 to "my_decorator" has incompatible type "Callable[[int, Any], Any]"; expected "FunctionToDecorate[Never, Never]" [arg-type] @my_decorator def get_val_with_kwarg(val: int, kw=None): return val def main(): print("get_val()`s return value:", get_val()) print("double_val()`s return value:", double_val(2)) print("get_val_with_kwarg()`s return value:", get_val_with_kwarg(3)) if __name__ == "__main__": main() </code>
#!/usr/bin/env python3.10

from typing import Protocol, ParamSpec, Generic, TypeVar

T = TypeVar("T", covariant=True)
P = ParamSpec("P")


# Callable types (as Protocols):
class FunctionToDecorate(Generic[T, P], Protocol):
    def __call__(self, *args: P.args) -> T: ...


class DecoratedFunction(Generic[T, P], Protocol):
    def __call__(self, *args: P.args) -> T: ...


# The decorator
def my_decorator(f: FunctionToDecorate[T, P]) -> DecoratedFunction[T, P]:

    def my_decorated_function(*args) -> T:
        return f(*args)

    return my_decorated_function


# error: Argument 1 to "my_decorator" has incompatible type "Callable[[], int]"; expected "FunctionToDecorate[Never, Never]"  [arg-type]
@my_decorator
def get_val() -> int:
    return 1


# error: Argument 1 to "my_decorator" has incompatible type "Callable[[int], int]"; expected "FunctionToDecorate[Never, Never]"  [arg-type]
@my_decorator
def double_val(val: int) -> int:
    return val * 2


# error: Argument 1 to "my_decorator" has incompatible type "Callable[[int, Any], Any]"; expected "FunctionToDecorate[Never, Never]"  [arg-type]
@my_decorator
def get_val_with_kwarg(val: int, kw=None):
    return val


def main():
    print("get_val()`s return value:", get_val())
    print("double_val()`s return value:", double_val(2))
    print("get_val_with_kwarg()`s return value:", get_val_with_kwarg(3))


if __name__ == "__main__":
    main()

The output:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<code>get_val()`s return value: 1
double_val()`s return value: 4
get_val_with_kwarg()`s return value: 3
</code>
<code>get_val()`s return value: 1 double_val()`s return value: 4 get_val_with_kwarg()`s return value: 3 </code>
get_val()`s return value: 1
double_val()`s return value: 4
get_val_with_kwarg()`s return value: 3

NB:

The use of Protocol is justified by the complexity of the involved signatures Callable can’t represent. The above MRE is simply what my problem seems to boil down to when using these tools.

NB-2:

I’m also aware of the simpler syntax introduced by Python 3.12 for generic types. The use of TypeVar is justified by a backward compatibility constraint to Python 3.10.

Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa Dịch vụ tổ chức sự kiện 5 sao Thông tin về chúng tôi Dịch vụ sinh nhật bé trai Dịch vụ sinh nhật bé gái Sự kiện trọn gói Các tiết mục giải trí Dịch vụ bổ trợ Tiệc cưới sang trọng Dịch vụ khai trương Tư vấn tổ chức sự kiện Hình ảnh sự kiện Cập nhật tin tức Liên hệ ngay Thuê chú hề chuyên nghiệp Tiệc tất niên cho công ty Trang trí tiệc cuối năm Tiệc tất niên độc đáo Sinh nhật bé Hải Đăng Sinh nhật đáng yêu bé Khánh Vân Sinh nhật sang trọng Bích Ngân Tiệc sinh nhật bé Thanh Trang Dịch vụ ông già Noel Xiếc thú vui nhộn Biểu diễn xiếc quay đĩa Dịch vụ tổ chức tiệc uy tín Khám phá dịch vụ của chúng tôi Tiệc sinh nhật cho bé trai Trang trí tiệc cho bé gái Gói sự kiện chuyên nghiệp Chương trình giải trí hấp dẫn Dịch vụ hỗ trợ sự kiện Trang trí tiệc cưới đẹp Khởi đầu thành công với khai trương Chuyên gia tư vấn sự kiện Xem ảnh các sự kiện đẹp Tin mới về sự kiện Kết nối với đội ngũ chuyên gia Chú hề vui nhộn cho tiệc sinh nhật Ý tưởng tiệc cuối năm Tất niên độc đáo Trang trí tiệc hiện đại Tổ chức sinh nhật cho Hải Đăng Sinh nhật độc quyền Khánh Vân Phong cách tiệc Bích Ngân Trang trí tiệc bé Thanh Trang Thuê dịch vụ ông già Noel chuyên nghiệp Xem xiếc khỉ đặc sắc Xiếc quay đĩa thú vị
Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa
Thiết kế website Thiết kế website Thiết kế website Cách kháng tài khoản quảng cáo Mua bán Fanpage Facebook Dịch vụ SEO Tổ chức sinh nhật