MCPcopy Create free account
hub / github.com/scottrogowski/code2flow / Outer

Class Outer

tests/test_code/py/nested_class/nested_class.py:1–12  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1class Outer():
2 class Inner():
3 def inner_func():
4 Outer().outer_func()
5
6 def outer_func(a):
7 print("Outer_func")
8 a.inner_func()
9
10 def __init__(self):
11 self.inner = self.Inner()
12 print("do something")
13
14
15new_obj = Outer()

Callers 2

inner_funcMethod · 0.85
nested_class.pyFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected