archive
/
catfish
Archived
1
Fork 0
This repository has been archived on 2023-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
catfish/example/src/exit_soon.py

12 lines
122 B
Python
Executable File

#!/usr/bin/env python3
import time
print("Started") # noqa: T001
time.sleep(1)
print("Ended") # noqa: T001
exit(1)