From 88f1aad067ffacde3244cabc74d254c744f20ebf Mon Sep 17 00:00:00 2001 From: Luiz Carvalho Date: Jan 14 2019 19:21:26 +0000 Subject: Fix arithmetic flake8 error Signed-off-by: Luiz Carvalho --- diff --git a/freshmaker/odcsclient.py b/freshmaker/odcsclient.py index 111c6d1..7486afa 100644 --- a/freshmaker/odcsclient.py +++ b/freshmaker/odcsclient.py @@ -307,7 +307,7 @@ class FreshmakerODCSClient(object): # block. It would still be nice to redesign that part of # Freshmaker to do things "right". # This is tracked here: https://pagure.io/freshmaker/issue/114 - @retry(timeout=60*30, interval=2) + @retry(timeout=60 * 30, interval=2) def wait_for_compose(compose_id): ret = odcs.get_compose(compose_id) if ret["state_name"] == "done":