From ad455f144d75d39af33235e0973bdcd33420bac1 Mon Sep 17 00:00:00 2001 From: David Sangrey Date: Fri, 15 Dec 2023 12:00:51 -0500 Subject: [PATCH] [1801] Clarify Varnames --- EDMarketConnector.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/EDMarketConnector.py b/EDMarketConnector.py index 66c9cb67..9eec3b1f 100755 --- a/EDMarketConnector.py +++ b/EDMarketConnector.py @@ -2319,11 +2319,11 @@ sys.path: {sys.path}''' config.set('plugins_not_py3_last', int(time())) def check_fdev_ids(): - """Display message about missing FDEVID files""" + """Display message about missing FDEVID files.""" fdev_files = {'commodity.csv', 'rare_commodity.csv'} for file in fdev_files: - file = pathlib.Path(config.respath_path / 'FDevIDs' / file) - if file.is_file(): + fdevid_file = pathlib.Path(config.respath_path / 'FDevIDs' / file) + if fdevid_file.is_file(): continue # LANG: Popup-text about missing FDEVID Files popup_text = _(