Skip to content

Commit

Permalink
Merge pull request #148 from YunoHost/actions/black
Browse files Browse the repository at this point in the history
Format Python code with Black
  • Loading branch information
OniriCorpe authored May 19, 2024
2 parents 9eb04be + ecbc874 commit 365eb27
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 @@ -811,7 +811,9 @@ def remaining_replacebyyourapp(self):
@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):
Expand Down

0 comments on commit 365eb27

Please sign in to comment.