fixupfixup remove condition parantheses

This commit is contained in:
Semjon Kerner 2020-12-13 21:07:06 +01:00
parent 797663ff5a
commit 291cbf0809

View File

@ -36,7 +36,7 @@ class FishEvent:
def _fishing_sleep(waittime, lower_limit_ms = 16, upper_limit_ms = 2500):
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
max_wait_t = waittime+reaction if waittime+reaction <= 2.5 else 2.5
time.sleep(max_wait_t)