Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Severian
/
dify
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
cfa129e
dify
/
api
/
tests
/
integration_tests
/
utils
/
child_class.py
Severian
initial commit
a8b3f00
3 months ago
raw
Copy download link
history
blame
Safe
191 Bytes
from
tests.integration_tests.utils.parent_class
import
ParentClass
class
ChildClass
(
ParentClass
):
def
__init__
(
self, name:
str
):
super
().__init__(name)
self.name = name