Ouvre le dictionnaire avec un 'with statement'

This commit is contained in:
Antoine Van Elstraete 2022-01-24 16:52:59 +01:00
parent 57c87fe986
commit 9dbc9fc89d

View File

@ -63,10 +63,9 @@ args = parser.parse_args()
# Dictionary
if args.dictionary:
fp = args.dictionary
try :
f = open(fp)
liste = json.load(f)
with open(args.dictionary, "r") as dico:
liste = json.load(dico)
except:
print("Impossible d'ouvrir le fichier" + fp)