From 7412b84e046b2f876581af659e257ab5dcc18e5f Mon Sep 17 00:00:00 2001 From: Lorenzo Bolla Date: Tue, 25 Jan 2022 14:50:31 +0100 Subject: [PATCH] Fix flake8 lint errors --- system/t09_repo/list.py | 2 ++ system/t12_api/snapshots.py | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/system/t09_repo/list.py b/system/t09_repo/list.py index 6a8ed189..fb12ceee 100644 --- a/system/t09_repo/list.py +++ b/system/t09_repo/list.py @@ -38,12 +38,14 @@ class ListRepo4Test(BaseTest): ] runCmd = "aptly repo list -raw" + class ListRepo5Test(BaseTest): """ list local repo: json no repos """ runCmd = "aptly repo list -json" + class ListRepo6Test(BaseTest): """ list local repo: json normal diff --git a/system/t12_api/snapshots.py b/system/t12_api/snapshots.py index 626011d7..16b0f377 100644 --- a/system/t12_api/snapshots.py +++ b/system/t12_api/snapshots.py @@ -205,7 +205,7 @@ class SnapshotsAPITestCreateDelete(APITest): "Architectures": ["i386"], "Sources": [{"Name": snap2}], "Signing": DefaultSigningOptions, - } + } ) self.check_equal(resp.json()['State'], 2)