Skip to content

Commit

Permalink
style(python): ruff E741
Browse files Browse the repository at this point in the history
  • Loading branch information
LeonardHd committed Nov 14, 2023
1 parent efa809a commit 85dc7c4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,4 @@ def trim(docstring: str) -> str:


def reindent(string: str) -> str:
return "\n".join(l.strip() for l in string.strip().split("\n"))
return "\n".join(line.strip() for line in string.strip().split("\n"))

0 comments on commit 85dc7c4

Please sign in to comment.