From ea904a3a54810f4cf7f328a91bc7bf1d0373ddca Mon Sep 17 00:00:00 2001 From: Antonio MATTAR <antonio.mattar@etu.univ-amu.fr> Date: Tue, 28 Jun 2022 11:15:04 +0200 Subject: [PATCH] -Added required modules to requirements file // -Fixed a bug in main.py --- main.py | 1 - requirements.txt | 3 ++- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/main.py b/main.py index 3e7a36d..3a46111 100644 --- a/main.py +++ b/main.py @@ -147,7 +147,6 @@ def run_show_numbers(path): terme = int(input('Enter a number: ')) t = app_functions.dec_to_lambda_relative_integers(terme) print('Voici le terme:',logic.to_string(t)) - save_image_choice = input('Do you want to save the image? (y/n): ') logic.captureImage(t,path,'ENTIER-RELATIF-'+str(terme),False) save_image_choice = input('Do you want to save the images? (y/n): ') while save_image_choice not in ['y','n']: diff --git a/requirements.txt b/requirements.txt index 6fe6654..8f8424c 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1 +1,2 @@ -pyfiglet \ No newline at end of file +pyfiglet +keyboard \ No newline at end of file -- GitLab