Skip to content

Commit 9d7a028

Browse files
committed
return typehint for test func updated
1 parent f80b843 commit 9d7a028

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: machine_learning/mab.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -342,7 +342,7 @@ def update(self, arm_index: int, reward: int) -> None:
342342
self.values[arm_index] += (reward - self.values[arm_index]) / n
343343

344344

345-
def test_mab_strategies():
345+
def test_mab_strategies() -> None:
346346
"""
347347
Test the MAB strategies.
348348
"""

0 commit comments

Comments
 (0)