mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-04 00:20:55 +07:00
9 lines
147 B
Python
9 lines
147 B
Python
from typing import Self
|
|
|
|
|
|
class HasNestedFunction:
|
|
x: int = 42
|
|
|
|
def foo(self, inner_self: Self) -> None:
|
|
print(inner_self.<caret>)
|