Skip to content

Commit 285bf2c

Browse files
committed
Fix minor errors picked up by Marc.
1 parent 185f321 commit 285bf2c

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

axelrod/result_set.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -707,7 +707,8 @@ def __ne__(self, other):
707707

708708
class ResultSetFromFile(ResultSet):
709709
"""
710-
Read the result set directly from file.
710+
A class to hold the results of a tournament. Reads in a CSV file produced
711+
by the tournament class.
711712
"""
712713

713714
def __init__(self, filename, progress_bar=True,

axelrod/tournament.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ def play(self, build_results=True, filename=None,
8787
8888
Returns
8989
-------
90-
axelrod.ResultSet
90+
axelrod.ResultSetFromFile
9191
"""
9292
if progress_bar:
9393
self.progress_bar = tqdm.tqdm(total=len(self.match_generator),

0 commit comments

Comments
 (0)