mirror of
https://github.com/clearml/clearml-agent
synced 2025-01-31 17:16:51 +00:00
9 lines
136 B
Python
9 lines
136 B
Python
|
def main():
|
||
|
if not (1 / 2 == 0.5):
|
||
|
raise ValueError('failure')
|
||
|
print('success')
|
||
|
|
||
|
|
||
|
if __name__ == "__main__":
|
||
|
main()
|