Skip to content

Commit

Permalink
Removing prefix for history tracker.
Browse files Browse the repository at this point in the history
Is there a better way of doing this?
  • Loading branch information
drvinceknight committed Jun 20, 2016
1 parent c14a9eb commit d94f7aa
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions axelrod/strategy_transformers.py
Original file line number Diff line number Diff line change
Expand Up @@ -221,8 +221,7 @@ def history_track_wrapper(player, opponent, action):
player._recorded_history = [action]
return action

TrackHistoryTransformer = StrategyTransformerFactory(
history_track_wrapper, name_prefix="HistoryTracking")()
TrackHistoryTransformer = StrategyTransformerFactory(history_track_wrapper)()


def deadlock_break_wrapper(player, opponent, action):
Expand Down

0 comments on commit d94f7aa

Please sign in to comment.