daemon: moved grpc wrapper classes to core.grpc.wrappers

This commit is contained in:
Blake Harnden 2020-08-27 11:02:02 -07:00
parent f6992e7545
commit b0bac1d319
26 changed files with 47 additions and 40 deletions

View file

@ -5,9 +5,9 @@ import tkinter as tk
from tkinter import ttk
from typing import TYPE_CHECKING, List, Optional
from core.api.grpc.wrappers import ExceptionEvent, ExceptionLevel
from core.gui.dialogs.alerts import AlertsDialog
from core.gui.themes import Styles
from core.gui.wrappers import ExceptionEvent, ExceptionLevel
if TYPE_CHECKING:
from core.gui.app import Application