Skip to content

Commit

Permalink
Merge pull request #145 from YunoHost/actions/black
Browse files Browse the repository at this point in the history
Format Python code with Black
  • Loading branch information
alexAubin authored Apr 22, 2024
2 parents 428f125 + b1202a8 commit 0226540
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion package_linter.py
Original file line number Diff line number Diff line change
Expand Up @@ -1797,7 +1797,9 @@ def maintainer_sensible_values(self):
if not value.strip():
yield Warning("Please don't put empty string as a maintainer x_x")
elif "," in value:
yield Warning("Please don't use comma in maintainers value, this is supposed to be a list such as ['foo', bar'], not ['foo, bar'] x_x")
yield Warning(
"Please don't use comma in maintainers value, this is supposed to be a list such as ['foo', bar'], not ['foo, bar'] x_x"
)

@test()
def upstream_fields(self):
Expand Down

0 comments on commit 0226540

Please sign in to comment.