Skip to content

Commit a6733f4

Browse files
committed
Add type annotation for frequency table variable
1 parent 9e8092c commit a6733f4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

axelrod/strategies/frequency_analyzer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ def __init__(self) -> None:
6262
"""
6363
super().__init__()
6464
self.minimum_cooperation_ratio = 0.25
65-
self.frequency_table = dict()
65+
self.frequency_table: dict = dict()
6666
self.last_sequence = ""
6767
self.current_sequence = ""
6868

0 commit comments

Comments
 (0)