daemon: added grpc wrapped client tests, added new wrapped class ServiceFileConfig to consolidate associated data for its purpose

This commit is contained in:
Blake Harnden 2021-04-01 13:37:19 -07:00
parent 6086d1229b
commit 44f81391c4
5 changed files with 1335 additions and 36 deletions

View file

@ -312,6 +312,7 @@ class Menubar(tk.Menu):
filetypes=(("XML Files", "*.xml"), ("All Files", "*")),
)
if file_path:
file_path = Path(file_path)
self.open_xml_task(file_path)
def open_xml_task(self, file_path: Path) -> None: