diff options
| author | Lorenz Leitner <lorenz.leitner@student.tugraz.at> | 2019-03-15 10:36:26 +0100 |
|---|---|---|
| committer | Lorenz Leitner <lorenz.leitner@student.tugraz.at> | 2019-03-15 10:36:26 +0100 |
| commit | d5a1532f184f6b33b7622f3258f63cb0c7f82a15 (patch) | |
| tree | 4828e4fc77b2fc1d17cbabb749135315c5ef7b04 /pywal/image.py | |
| parent | bbc5a33394c024afe120c0959dd9cb8e01636321 (diff) | |
Fix unused variable
Diffstat (limited to 'pywal/image.py')
| -rw-r--r-- | pywal/image.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pywal/image.py b/pywal/image.py index d894189..6ef74fc 100644 --- a/pywal/image.py +++ b/pywal/image.py @@ -20,7 +20,7 @@ def get_image_dir_recursive(img_dir): file_types = (".png", ".jpg", ".jpeg", ".jpe", ".gif") images = [] - for path, subdirs, files in os.walk(img_dir): + for path, _, files in os.walk(img_dir): for name in files: if name.lower().endswith(file_types): if name.endswith(current_wall): |
