From 3c545ad861767ecc70fbd83b46707bf7d600cced Mon Sep 17 00:00:00 2001 From: Corey Bryant Date: Mon, 30 Oct 2023 13:42:46 +0000 Subject: [PATCH] Fix pep8 failures --- zaza/openstack/charm_tests/status/tests.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/zaza/openstack/charm_tests/status/tests.py b/zaza/openstack/charm_tests/status/tests.py index 30db3d6..6210d63 100644 --- a/zaza/openstack/charm_tests/status/tests.py +++ b/zaza/openstack/charm_tests/status/tests.py @@ -15,19 +15,16 @@ """Code for running status tests.""" import logging -import subprocess -import unittest import zaza import zaza.openstack.charm_tests.test_utils as test_utils + class ProposedPackageReport(test_utils.OpenStackBaseTest): """Proposed packages report status test class.""" def test_100_report_proposed_packages(self): """Report proposed packages installed on each unit.""" - - machines = [] cmd = 'apt list --installed' for application in zaza.model.get_status().applications: for unit in zaza.model.get_units(application):