mirror of
https://github.com/zrax/pycdc.git
synced 2026-06-23 11:34:07 +00:00
7 lines
152 B
Python
7 lines
152 B
Python
def handle_specific(flag):
|
|
try:
|
|
if flag:
|
|
raise ValueError('boom')
|
|
except ValueError:
|
|
return 'value'
|
|
return 'ok'
|