From caa54770d86fe708e2317109533030f9834143f0 Mon Sep 17 00:00:00 2001 From: Michael <35783820+mib1185@users.noreply.github.com> Date: Sun, 27 Oct 2024 20:20:38 +0100 Subject: [PATCH] increase sleep from 0.1 to 0.2 --- pyfritzhome/fritzhome.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyfritzhome/fritzhome.py b/pyfritzhome/fritzhome.py index bf68e18..43e1b51 100644 --- a/pyfritzhome/fritzhome.py +++ b/pyfritzhome/fritzhome.py @@ -205,7 +205,7 @@ def wait_device_txbusy(self, ain, retries=10): txbusy = dom.findall("txbusy") if txbusy[0].text == "0": return True - time.sleep(0.1) + time.sleep(0.2) return False def get_device_elements(self):