Skip to content

Commit

Permalink
endless CI fixing
Browse files Browse the repository at this point in the history
  • Loading branch information
reaperhulk committed Nov 27, 2022
1 parent 607f0fc commit a5ee003
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_interfaces.py
Expand Up @@ -58,15 +58,15 @@ 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:
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)
Expand Down

0 comments on commit a5ee003

Please sign in to comment.