From b1202a8b77cf9f1027873511ffffaf7df7da76ba Mon Sep 17 00:00:00 2001 From: alexAubin <4533074+alexAubin@users.noreply.github.com> Date: Mon, 22 Apr 2024 16:10:28 +0000 Subject: [PATCH] :art: Format Python code with Black --- package_linter.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/package_linter.py b/package_linter.py index 1d01037..eaf1b6d 100755 --- a/package_linter.py +++ b/package_linter.py @@ -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):