From 9bcaea12cf6a8a7a172355ce3c4dd67b51f02f4a Mon Sep 17 00:00:00 2001 From: Lee Miller Date: Sat, 9 Sep 2023 03:23:01 +0300 Subject: [PATCH] Specifically skip B311 in manager by bandit --- minode/manager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/minode/manager.py b/minode/manager.py index 72dec49..3ff5f00 100644 --- a/minode/manager.py +++ b/minode/manager.py @@ -26,7 +26,7 @@ class Manager(threading.Thread): self.last_pickled_nodes = time.time() # Publish destination 5-15 minutes after start self.last_published_i2p_destination = \ - time.time() - 50 * 60 + random.uniform(-1, 1) * 300 # nosec + time.time() - 50 * 60 + random.uniform(-1, 1) * 300 # nosec B311 def run(self): self.load_data()