From a5ee0036f5ea5fb16dfb790f25502bced7fbf2cc Mon Sep 17 00:00:00 2001 From: Paul Kehrer Date: Sun, 27 Nov 2022 10:50:28 -0700 Subject: [PATCH] endless CI fixing --- tests/test_interfaces.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_interfaces.py b/tests/test_interfaces.py index 302edb93e3bf..3e0933447fc4 100644 --- a/tests/test_interfaces.py +++ b/tests/test_interfaces.py @@ -58,7 +58,7 @@ def property(self): def test_signature_mismatch(self): class SimpleInterface(metaclass=abc.ABCMeta): @abc.abstractmethod - def method(self, other: object) -> int: + def method(self, other: object): """Method with signature""" class ClassWithoutSignature: @@ -66,7 +66,7 @@ def method(self, other): """Method without signature""" class ClassWithSignature: - def method(self, other: object) -> int: + def method(self, other: object): """Method with signature""" verify_interface(SimpleInterface, ClassWithoutSignature)