From ecbc8749f1cddf9c5156da6f7988340e9d3ab381 Mon Sep 17 00:00:00 2001 From: tituspijean <8769166+tituspijean@users.noreply.github.com> Date: Sun, 19 May 2024 16:42:29 +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 4818b75..bc76c74 100755 --- a/package_linter.py +++ b/package_linter.py @@ -811,7 +811,9 @@ class App(TestSuite): @test() def supervisor_usage(self): if os.system("grep -I -qr '^\s*supervisorctl' %s 2>/dev/null" % self.path) == 0: - yield Warning("Please don't rely on supervisor to run services. YunoHost is about standardization and the standard is to use systemd units...") + yield Warning( + "Please don't rely on supervisor to run services. YunoHost is about standardization and the standard is to use systemd units..." + ) @test() def bad_encoding(self):