Compare commits
1 Commits
9-fix-test
...
v15
Author | SHA1 | Date | |
---|---|---|---|
560e9ee6db
|
4
main.py
4
main.py
@ -14,7 +14,7 @@ from random import choice
|
|||||||
import sys
|
import sys
|
||||||
|
|
||||||
|
|
||||||
def main():
|
def main(): # pragma: nocover
|
||||||
"""
|
"""
|
||||||
Fonction principale, qui va attendre les instructions de l'utilisateur.
|
Fonction principale, qui va attendre les instructions de l'utilisateur.
|
||||||
"""
|
"""
|
||||||
@ -117,5 +117,5 @@ def stop(exit_code: int = 0):
|
|||||||
sys.exit(exit_code)
|
sys.exit(exit_code)
|
||||||
|
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__': # pragma: nocover
|
||||||
main()
|
main()
|
||||||
|
Reference in New Issue
Block a user