Merge branch 'handle-not-enough-space-exception' into address_label
This commit is contained in:
commit
bc72c079b0
1 changed files with 5 additions and 1 deletions
|
@ -82,7 +82,11 @@ def main(*_args):
|
|||
else:
|
||||
member_struct = json.load(open('example.json', 'r'))
|
||||
app = FormApp(member_struct)
|
||||
app.run()
|
||||
try:
|
||||
app.run()
|
||||
except Exception as e:
|
||||
print(e)
|
||||
return 0
|
||||
|
||||
new_data = {}
|
||||
new_data['stammdaten'] = dict(
|
||||
|
|
Loading…
Reference in a new issue