diff options
| author | zhang <zch921005@126.com> | 2022-09-01 22:39:16 +0800 |
|---|---|---|
| committer | zhang <zch921005@126.com> | 2022-09-01 22:39:16 +0800 |
| commit | a1930ed563d5a3905c9504dbcff2fb00653233da (patch) | |
| tree | 33ac93fab92f157de6ad1a91515ec9fcc9985e43 /basics/python | |
| parent | 257cbbd2270e9a8756798e256a0bbd29c0fd83db (diff) | |
residual connection
Diffstat (limited to 'basics/python')
| -rw-r--r-- | basics/python/circular/a.py | 2 |
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): |
