From 4d0117d54c113f5ce0c266df7d248f73e987d026 Mon Sep 17 00:00:00 2001 From: Licaon_Kter Date: Thu, 21 Sep 2023 07:31:54 +0000 Subject: [PATCH] fix lint --- fdroidserver/lint.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/fdroidserver/lint.py b/fdroidserver/lint.py index 9e009160..951c74fd 100644 --- a/fdroidserver/lint.py +++ b/fdroidserver/lint.py @@ -141,7 +141,9 @@ http_checks = ( re.compile( r'^https://[^/]*(github|gitlab|bitbucket|rawgit|githubusercontent)\.[a-zA-Z]+/([^/]+/){2,3}(master|main)/' ), - _("Use /HEAD instead of /master or /main to point at a file in the default branch"), + _( + "Use /HEAD instead of /master or /main to point at a file in the default branch" + ), ), ] )