We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5a3404d commit 1cd3c4bCopy full SHA for 1cd3c4b
src/mqt/predictor/utils.py
@@ -26,14 +26,13 @@ def timeout_handler(signum, frame): # Custom signal handler
26
except TimeoutException:
27
logger.debug(
28
"Calculation/Generation exceeded timeout limit for "
29
+ + func.__module__
30
+ ", "
- + func
31
- + ", "
32
- + args[1:]
+ + str(args[1:])
33
)
34
return False
35
except Exception as e:
36
- logger.error("Something else went wrong: " + ", " + e)
+ logger.error("Something else went wrong: " + str(e))
37
38
else:
39
# Reset the alarm
0 commit comments