fixup remove condition parantheses

This commit is contained in:
Semjon Kerner 2020-12-13 21:04:45 +01:00
parent 38df271376
commit 797663ff5a

View File

@ -36,9 +36,9 @@ class FishEvent:
def _fishing_sleep(waittime, lower_limit_ms = 16, upper_limit_ms = 2500): def _fishing_sleep(waittime, lower_limit_ms = 16, upper_limit_ms = 2500):
reaction = 0.0 reaction = 0.0
if (FishEvent.jitter and (upper_limit_ms > lower_limit_ms)): if (FishEvent.jitter and upper_limit_ms > lower_limit_ms):
reaction = float( random.randrange(lower_limit_ms, upper_limit_ms) )/1000.0 reaction = float( random.randrange(lower_limit_ms, upper_limit_ms) )/1000.0
max_wait_t = waittime+reaction if (waittime+reaction <= 2.5) else 2.5 max_wait_t = waittime+reaction if waittime+reaction <= 2.5 else 2.5
time.sleep(max_wait_t) time.sleep(max_wait_t)