mirror of
https://github.com/KevinMidboe/fanController.git
synced 2025-10-29 17:40:22 +00:00
4 lines
88 B
Python
4 lines
88 B
Python
import sys
|
|
exit_code = int(sys.argv[1]) if len(sys.argv) > 1 else 0
|
|
sys.exit(exit_code)
|