ESBO-ETC/esbo_etc/lib/helpers.py

42 lines
661 B
Python
Raw Normal View History

2020-04-08 09:45:20 +02:00
import logging
import sys
import traceback
def error(msg: str, exit_: bool = True):
"""
Handle errors
Parameters
----------
msg : str
Error message to show
exit_ : bool
Exit program
Returns
-------
"""
logging.error(msg)
if exit_:
traceback.print_stack()
sys.exit(1)
def isLambda(v: object):
"""
Check if a object is of type lambda
Parameters
----------
v : object
The object to check.
Returns
-------
res : bool
Result of the check
"""
2020-04-16 09:35:24 +02:00
return isinstance(v, type(lambda: None)) and v.__name__ == (lambda: None).__name__