mirror of
https://github.com/clearml/clearml-agent
synced 2025-01-31 09:06:52 +00:00
8 lines
95 B
Python
8 lines
95 B
Python
|
def main():
|
||
|
assert 1 / 2 == 0
|
||
|
print('success')
|
||
|
|
||
|
|
||
|
if __name__ == "__main__":
|
||
|
main()
|