Post #64 959 May 12, 2025, 12:51 UTC https://github.com/wemake-services/wemake-python-styleguide/issues/3413#wemake_python_styleguide #ast GitHub WPS212 counts return-statements from inner definitions · Issue #3413 · wemake-services/wemake-python-styleguide What's wrong def foobar() -> Any: def inner_func(x: Any) -> Any: return x class Foobar: def __init__(self: Self): self.x = 1 def get_x(self: Self) -> int: return self.x return inner_fu...