Skip to content

Commit a9dfaba

Browse files
committed
Remove default value of delta dictionary in AbstractAdaptor
1 parent 6b83b04 commit a9dfaba

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

axelrod/strategies/adaptor.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -36,12 +36,6 @@ def __init__(self, d: Dict[Tuple[Action, Action], float],
3636
perr: float = 0.01) -> None:
3737
super().__init__()
3838
self.perr = perr
39-
if not d:
40-
d = {(C, C): 1., # R
41-
(C, D): 1., # S
42-
(D, C): 1., # T
43-
(D, D): 1. # P
44-
}
4539
self.d = d
4640
self.s = 0.
4741

0 commit comments

Comments
 (0)