Bowen Liang b035c02f78
chore(api/tests): apply ruff reformat #7590 (#7591)
Co-authored-by: -LAN- <laipz8200@outlook.com>
2024-08-23 23:52:25 +08:00

7 lines
124 B
Python

class ParentClass:
def __init__(self, name):
self.name = name
def get_name(self):
return self.name