blob: 3cc694d47966ea58096b9b33f14d0325b2ff8df1 [file] [log] [blame]
# pylint: disable=missing-docstring,no-self-use,unused-argument,pointless-statement
# pylint: disable=too-few-public-methods,no-name-in-module
from __future__ import annotations
class Class:
@classmethod
def from_string(cls, source) -> Class:
...
def validate_b(self, obj: OtherClass) -> bool:
...
class OtherClass:
...
class Example:
obj: Other
class Other:
...
class ExampleSelf:
next: ExampleSelf