summaryrefslogtreecommitdiff
path: root/basics/python/circular
diff options
context:
space:
mode:
authorzhang <zch921005@126.com>2022-09-01 22:39:16 +0800
committerzhang <zch921005@126.com>2022-09-01 22:39:16 +0800
commita1930ed563d5a3905c9504dbcff2fb00653233da (patch)
tree33ac93fab92f157de6ad1a91515ec9fcc9985e43 /basics/python/circular
parent257cbbd2270e9a8756798e256a0bbd29c0fd83db (diff)
residual connection
Diffstat (limited to 'basics/python/circular')
-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):