From d991c6f42f0803440cb61d3edd09cea04bf6f158 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torma=20Krist=C3=B3f?= Date: Fri, 11 Sep 2020 03:01:09 +0200 Subject: [PATCH] typo --- strat/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/strat/main.py b/strat/main.py index 6f50d7a..a6fb670 100644 --- a/strat/main.py +++ b/strat/main.py @@ -8,7 +8,7 @@ def avg(ls: list) -> int: def decision(h1: list, h2: list) -> int: - if avg(h2[:4]) >= 0.05: + if avg(h2[:4]) >= 0.5: return 1 else: return 0