From 44618d49561c314477a3c54a9665ae92fdf72ea8 Mon Sep 17 00:00:00 2001 From: Chris Meyers Date: Thu, 3 Mar 2016 11:45:40 -0500 Subject: [PATCH] flake8 fix --- awx/main/tests/functional/commands/test_cleanup_facts.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awx/main/tests/functional/commands/test_cleanup_facts.py b/awx/main/tests/functional/commands/test_cleanup_facts.py index 204db8b3cb..d741b58302 100644 --- a/awx/main/tests/functional/commands/test_cleanup_facts.py +++ b/awx/main/tests/functional/commands/test_cleanup_facts.py @@ -71,7 +71,7 @@ def test_cleanup_logic(fact_scans, hosts): module = 'ansible' cleanup_facts = CleanupFacts() - deleted_count = cleanup_facts.cleanup(timestamp_middle, granularity, module=module) + cleanup_facts.cleanup(timestamp_middle, granularity, module=module) host_ids = Host.objects.all().values_list('id', flat=True)