Skip to content

Commit

Permalink
PEP8
Browse files Browse the repository at this point in the history
  • Loading branch information
Technologicat committed Feb 29, 2024
1 parent ac825c3 commit 34abbac
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions bibtexparser/middlewares/fieldkeys.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@ def transform_entry(self, entry: Entry, library: "Library") -> Entry:
# to remove "seen_normalized_keys" and this if statement
if normalized_key in seen_normalized_keys:
logging.warning(
f"NormalizeFieldKeys: in entry '{entry.key}': "
+ f"duplicate normalized key '{normalized_key}' "
+ f"(original '{field.key}'); overriding previous value"
f"NormalizeFieldKeys: in entry '{entry.key}': " +
f"duplicate normalized key '{normalized_key}' " +
f"(original '{field.key}'); overriding previous value"
)
seen_normalized_keys.add(normalized_key)
field.key = normalized_key
Expand Down

0 comments on commit 34abbac

Please sign in to comment.