mirror of
https://github.com/aykhans/AzSuicideDataVisualization.git
synced 2025-04-21 10:15:45 +00:00
10 lines
139 B
Python
10 lines
139 B
Python
def raises(err, lamda):
|
|
try:
|
|
lamda()
|
|
return False
|
|
except err:
|
|
return True
|
|
|
|
|
|
no_default = '__no__default__'
|