Skip to content

Commit

Permalink
fix warning when parsing tsv
Browse files Browse the repository at this point in the history
  • Loading branch information
paretje committed Jul 3, 2024
1 parent 1ee4717 commit b245412
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion psm_utils/io/tsv.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ def __iter__(self):
try:
yield PSM(**self._parse_entry(row))
except ValidationError:
logger.warning("Could not parse PSM from row: `{row}`")
logger.warning(f"Could not parse PSM from row: `{row}`")
continue

@staticmethod
Expand Down

0 comments on commit b245412

Please sign in to comment.