Ajout de docstrings. Pylint est content

Signed-off-by: Yohann D'ANELLO <ynerant@crans.org>
This commit is contained in:
Yohann D'ANELLO 2021-01-26 16:47:46 +01:00
parent d8c6b6e6bf
commit 01337279fc
Signed by: ynerant
GPG Key ID: 3A75C55819C8CF85
1 changed files with 13 additions and 0 deletions

13
main.py
View File

@ -1,10 +1,23 @@
#!/usr/bin/env python #!/usr/bin/env python
"""
Ce script est utilisé en guise d'appui pour le séminaire Crans d'introduction
à l'intégration continue.
Le dépôt est présent sur https://gitlab.crans.org/ynerant/seminaire-ci.git
Plus d'informations sur les séminaires : https://www.crans.org/fr/seminaire/
"""
from random import choice from random import choice
import sys import sys
def main(): def main():
"""
Fonction principale, qui va attendre les instructions de l'utilisateur.
"""
print("Bienvenue dans le chatbot du séminaire de l'intégration continue !") print("Bienvenue dans le chatbot du séminaire de l'intégration continue !")
print("Veuillez taper une commande. Tapez \"aide\" pour afficher l'aide.") print("Veuillez taper une commande. Tapez \"aide\" pour afficher l'aide.")