From cad19d52242883a6341c7eeab807400b063f1f9c Mon Sep 17 00:00:00 2001 From: Dmitry Ustalov Date: Sat, 7 Sep 2024 00:01:42 +0200 Subject: [PATCH] Remove unnecessary code --- python/evalica/naive.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/python/evalica/naive.py b/python/evalica/naive.py index e0f98e9..5371131 100644 --- a/python/evalica/naive.py +++ b/python/evalica/naive.py @@ -52,8 +52,6 @@ def counting( elif w == Winner.Draw: scores[x] += weight * tie_weight scores[y] += weight * tie_weight - else: - continue return np.nan_to_num(scores)