We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 14e8ca3 commit 942189bCopy full SHA for 942189b
src/axelrod_fortran/player.py
@@ -75,9 +75,9 @@ def original_strategy(
75
return self.original_function(*[byref(arg) for arg in args])
76
77
def strategy(self, opponent):
78
- if type(opponent) is Player\
79
- and (opponent.original_name == self.original_name) \
80
- and (opponent.shared_library_name == self.shared_library_name):
+ if type(opponent) is Player \
+ and (opponent.original_name == self.original_name) \
+ and (opponent.shared_library_name == self.shared_library_name):
81
82
message = """
83
You are playing a match with two copies of the same player.
0 commit comments