Spaces:
Sleeping
Sleeping
File size: 296 Bytes
268baab | 1 2 3 4 5 6 7 8 9 | from tkinter import *
from tkinter import ttk
from src.apps.dbapp.framebase import CustomFrameBase
from src.database.weavservice import WeaviateService
class QueryFrame(CustomFrameBase):
def __init__(self, parent, service: WeaviateService) -> None:
super().__init__(parent, service)
|