We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 65d62f6 commit a3ea80bCopy full SHA for a3ea80b
1 file changed
demo/demo.py
@@ -11,6 +11,7 @@
11
)
12
from start_simulation_config_json import start_simulation_json_config
13
from demo_config import USER_AGENT, EASYSSP_USERNAME, EASYSSP_PASSWORD
14
+import traceback
15
16
with (
17
open("../input/simulation_example.ssp", "rb") as ssp_file,
@@ -54,4 +55,4 @@
54
55
# catch ValidationError for incorrect request parameters
56
# catch ApiException for errors from the API client or the server
57
except (AuthError, ApiException, ValidationError) as ex:
- print(ex)
58
+ traceback.print_exc()
0 commit comments