Skip to content

Commit

Permalink
chore(lint): format files after ruff update
Browse files Browse the repository at this point in the history
  • Loading branch information
anehx committed Jan 13, 2025
1 parent ec8bf9d commit a35f7e3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion document_merge_service/api/filters.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def filter(self, qs, value):
raise ValidationError(
f'Lookup expression "{lookup_expr}" not allowed for field '
f'"{self.field_name}". Valid expressions: '
f'{", ".join(valid_lookups.keys())}'
f"{', '.join(valid_lookups.keys())}"
)
# "contains" behaves differently on JSONFields as it does on TextFields.
# That's why we annotate the queryset with the value.
Expand Down
2 changes: 1 addition & 1 deletion document_merge_service/api/unoconv.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ def run_fork_safe(
if capture_output: # pragma: no cover
if kwargs.get("stdout") is not None or kwargs.get("stderr") is not None:
raise ValueError(
"stdout and stderr arguments may not be used " "with capture_output."
"stdout and stderr arguments may not be used with capture_output."
)
kwargs["stdout"] = PIPE
kwargs["stderr"] = PIPE
Expand Down

0 comments on commit a35f7e3

Please sign in to comment.