1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-09-21 04:10:37 +02:00

style: fix lint

This commit is contained in:
proletarius101 2024-02-17 06:47:17 +08:00
parent f2fcfeabe5
commit 0ea0a3de78
No known key found for this signature in database

View File

@ -622,9 +622,9 @@ class BuildTest(unittest.TestCase):
with open(metadata_file) as fp:
app = fdroidserver.metadata.App(yaml.safe_load(fp))
app['RepoType'] = 'git'
app[
'Binaries'
] = 'https://example.com/fdroid/repo/info.guardianproject.checkey_%v.apk'
app['Binaries'] = (
'https://example.com/fdroid/repo/info.guardianproject.checkey_%v.apk'
)
build = fdroidserver.metadata.Build(
{
'versionCode': 123,
@ -712,9 +712,9 @@ class BuildTest(unittest.TestCase):
with open(metadata_file) as fp:
app = fdroidserver.metadata.App(yaml.safe_load(fp))
app['RepoType'] = 'git'
app[
'Binaries'
] = 'https://example.com/fdroid/repo/info.guardianproject.checkey_%v.apk'
app['Binaries'] = (
'https://example.com/fdroid/repo/info.guardianproject.checkey_%v.apk'
)
build = fdroidserver.metadata.Build(
{
'versionCode': 123,