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:
|
else:
|
||||||
member_struct = json.load(open('example.json', 'r'))
|
member_struct = json.load(open('example.json', 'r'))
|
||||||
app = FormApp(member_struct)
|
app = FormApp(member_struct)
|
||||||
app.run()
|
try:
|
||||||
|
app.run()
|
||||||
|
except Exception as e:
|
||||||
|
print(e)
|
||||||
|
return 0
|
||||||
|
|
||||||
new_data = {}
|
new_data = {}
|
||||||
new_data['stammdaten'] = dict(
|
new_data['stammdaten'] = dict(
|
||||||
|
|
Loading…
Add table
Reference in a new issue