From 01a0936afed9d7b87efb3de247d02e575e580c4b Mon Sep 17 00:00:00 2001 From: oleting Date: Wed, 30 Dec 2020 16:35:27 +0100 Subject: [PATCH] . --- gui/utils.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/gui/utils.py b/gui/utils.py index 52e960d..93feead 100644 --- a/gui/utils.py +++ b/gui/utils.py @@ -1,9 +1,10 @@ -import os -from typing import Optional - from errors.custom import NoPathError from interpreter.NassiShneidermann import NassiShneidermanDiagram, Overwrite_behaviour, OB -from draw.Iinstruction import * + +from typing import Optional +import os +import logging + def nassi(input_path: str, output_path: str, outputname: str, gui, behaviour: Overwrite_behaviour, font_filepath: Optional[str]=None): NSD = NassiShneidermanDiagram(gui.debug_mode)