Skip to content

Commit

Permalink
ignore unused assigned varaible
Browse files Browse the repository at this point in the history
  • Loading branch information
probinso committed Jul 20, 2018
1 parent 7b7633d commit 0eb92bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gensim/test/test_atmodel.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ def testEmptyDocument(self):
_a2d = author2doc.copy()
_a2d['joaquin'] = [len(_local_texts) - 1]
try:
model = self.class_(_corpus, author2doc=_a2d, id2word=_dictionary, num_topics=2)
_ = self.class_(_corpus, author2doc=_a2d, id2word=_dictionary, num_topics=2)
except IndexError:
raise IndexError("error occurs in 1.0.0 release tag")

Expand Down

0 comments on commit 0eb92bc

Please sign in to comment.