mirror of
https://github.com/YunoHost/package_linter.git
synced 2024-09-03 20:06:12 +02:00
Merge pull request #145 from YunoHost/actions/black
Format Python code with Black
This commit is contained in:
commit
02265400d9
1 changed files with 3 additions and 1 deletions
|
@ -1797,7 +1797,9 @@ class Manifest(TestSuite):
|
|||
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):
|
||||
|
|
Loading…
Reference in a new issue