Dataclasses WIP
This commit is contained in:
15
Tagger.py
15
Tagger.py
@@ -2,10 +2,15 @@
|
||||
import tkinter as tk
|
||||
from tkinter import ttk
|
||||
|
||||
from src.gui.gui import main
|
||||
from src.gui.gui import App
|
||||
from src.core.file_handler import list_files
|
||||
from src.core.SQL_handler import SQLite3FileHandler
|
||||
|
||||
# Functions
|
||||
main()
|
||||
a = list_files("./src/core")
|
||||
print(a)
|
||||
class State():
|
||||
def __init__(self) -> None:
|
||||
self.app = App()
|
||||
self.sql_handler = SQLite3FileHandler(Path("Test.db3"))
|
||||
|
||||
|
||||
STATE = State()
|
||||
STATE.app.main()
|
||||
Reference in New Issue
Block a user