summaryrefslogtreecommitdiff
path: root/basics/python
diff options
context:
space:
mode:
Diffstat (limited to 'basics/python')
-rw-r--r--basics/python/circular/a.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/basics/python/circular/a.py b/basics/python/circular/a.py
index b32c70d..1b8a255 100644
--- a/basics/python/circular/a.py
+++ b/basics/python/circular/a.py
@@ -6,7 +6,7 @@ if TYPE_CHECKING:
class A:
- def foo(self, b: 'B'):
+ def foo(self, b: B):
return 2*b.foo()
def t(self):