mirror of
https://github.com/Derpy-Leggies/OnlyLegs.git
synced 2025-01-01 12:26:13 +00:00
Missed PyLint errors
This commit is contained in:
parent
7b97b8e0ef
commit
94ea3a1f30
|
@ -67,13 +67,14 @@ class Metadata:
|
|||
}
|
||||
|
||||
# Thanks chatGPT xP
|
||||
# pylint: disable=E0602
|
||||
for key, value in encoded_exif.items():
|
||||
for mapping_name, mapping_val in EXIF_MAPPING:
|
||||
if key in mapping_val:
|
||||
if len(mapping_val[key]) == 2:
|
||||
exif[mapping_name][mapping_val[key][0]] = {
|
||||
'raw': value,
|
||||
'formatted': getattr(helpers, mapping_val[key][1])(value), # pylint: disable=E0602
|
||||
'formatted': getattr(helpers, mapping_val[key][1])(value),
|
||||
}
|
||||
else:
|
||||
exif[mapping_name][mapping_val[key][0]] = {
|
||||
|
|
|
@ -3,7 +3,6 @@ OnlyLegs - Setup
|
|||
Runs when the app detects that there is no user directory
|
||||
"""
|
||||
import os
|
||||
import sys
|
||||
import logging
|
||||
import re
|
||||
import platformdirs
|
||||
|
|
Loading…
Reference in a new issue