+ new Layout

This commit is contained in:
oleting
2020-12-29 00:00:31 +01:00
parent ff2ea29c5d
commit 311d0d5604
4 changed files with 25 additions and 9 deletions

View File

@@ -1,7 +1,7 @@
import os
from typing import Optional
from errors.custom import NoPathError
from interpreter.NassiShneidermann import NassiShneidermanDiagram, Overwrite_behaviour, OB
from draw.Iinstruction import *
@@ -17,6 +17,8 @@ def nassi(input_path: str, output_path: str, outputname: str, gui, behaviour: Ov
def output(values):
output_path = values['-OUTPUT FOLDER-']
if output_path == '':
raise NoPathError
try:
file_list = os.listdir(output_path)
except: