From 3bcd4d4ac052f614ac352d15219b5f7b3250c4b3 Mon Sep 17 00:00:00 2001 From: Scott Sanderson Date: Tue, 25 Apr 2017 22:32:11 -0400 Subject: [PATCH] DOC: Close backticks in docstring. --- zipline/pipeline/classifiers/classifier.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zipline/pipeline/classifiers/classifier.py b/zipline/pipeline/classifiers/classifier.py index 86a91a0e..810430fa 100644 --- a/zipline/pipeline/classifiers/classifier.py +++ b/zipline/pipeline/classifiers/classifier.py @@ -76,7 +76,7 @@ class Classifier(RestrictedDTypeMixin, ComputableTerm): def eq(self, other): """ Construct a Filter returning True for asset/date pairs where the output - of ``self`` matches ``other. + of ``self`` matches ``other``. """ # We treat this as an error because missing_values have NaN semantics, # which means this would return an array of all False, which is almost