Code
Hub
Workspaces
Connect
Indexed graphs
Engine
MCP
copy
Index your code
hub
/
github.com/qiwsir/StarterLearningPython
/ Animal
Class
Animal
2code/21101.py:8–13 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
6
__metaclass__ = type
7
8
class
Animal:
9
def
__init__(self, name=
""
):
10
self.name = name
11
12
def
talk(self):
13
pass
14
15
class
Cat(Animal):
16
def
talk(self):
Callers
1
21101.py
File · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected