Specifically skip B311 in manager by bandit

This commit is contained in:
Lee Miller 2023-09-09 03:23:01 +03:00
parent e4c2c1be16
commit 9bcaea12cf
Signed by untrusted user: lee.miller
GPG Key ID: 4F97A5EA88F4AB63
1 changed files with 1 additions and 1 deletions

View File

@ -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()