Skip to content

Commit

Permalink
FIX: typo in Pipeline error
Browse files Browse the repository at this point in the history
  • Loading branch information
banilo committed Jan 10, 2015
1 parent cdae4a4 commit b4ea76b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sklearn/pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ def __init__(self, steps):
for t in transforms:
if (not (hasattr(t, "fit") or hasattr(t, "fit_transform")) or not
hasattr(t, "transform")):
raise TypeError("All intermediate steps a the chain should "
raise TypeError("All intermediate steps of the chain should "
"be transforms and implement fit and transform"
" '%s' (type %s) doesn't)" % (t, type(t)))

Expand Down

0 comments on commit b4ea76b

Please sign in to comment.