diff --git a/main.py b/main.py index 5edac50..2189dce 100644 --- a/main.py +++ b/main.py @@ -7,7 +7,7 @@ def main(): print("Bienvenue dans le chatbot du séminaire de l'intégration continue !") print("Veuillez taper une commande. Tapez \"help\" pour afficher l'aide.") - while true: + while True: command = input("> ") args = command.split(" ") print(globals()[args[0]](*args[1:]))