mirror of
https://github.com/csunny/DB-GPT.git
synced 2025-09-28 21:12:13 +00:00
13 lines
261 B
Python
13 lines
261 B
Python
from abc import ABC, abstractmethod
|
|
from pydantic import BaseModel
|
|
from test_cls_base import TestBase
|
|
|
|
|
|
class Test1(TestBase):
|
|
|
|
def write(self):
|
|
self.test_values.append("x")
|
|
self.test_values.append("y")
|
|
self.test_values.append("g")
|
|
|