Skip to content

Commit

Permalink
Remove default value of delta dictionary in AbstractAdaptor
Browse files Browse the repository at this point in the history
  • Loading branch information
marcharper committed Oct 30, 2018
1 parent cb51977 commit 54da931
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions axelrod/strategies/adaptor.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,6 @@ def __init__(self, d: Dict[Tuple[Action, Action], float],
perr: float = 0.01) -> None:
super().__init__()
self.perr = perr
if not d:
d = {(C, C): 1., # R
(C, D): 1., # S
(D, C): 1., # T
(D, D): 1. # P
}
self.d = d
self.s = 0.

Expand Down

0 comments on commit 54da931

Please sign in to comment.