Skip to content
This repository has been archived by the owner on Dec 16, 2022. It is now read-only.

Commit

Permalink
Fix pylint
Browse files Browse the repository at this point in the history
  • Loading branch information
matt-gardner committed Aug 29, 2017
1 parent bdf5423 commit 9c7b766
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions allennlp/common/squad_eval.py
@@ -1,4 +1,5 @@
""" Official evaluation script for v1.1 of the SQuAD dataset. """
# pylint: skip-file
from __future__ import print_function
from collections import Counter
import string
Expand Down
2 changes: 1 addition & 1 deletion allennlp/data/tokenizers/word_filter.py
Expand Up @@ -19,7 +19,7 @@ def should_keep_words(self, words: List[str]) -> List[bool]:
"""
Decides whether to remove words from the given list. To make it easier to deal with data
associated with the word list (like character offsets), we return a list of boolean
decisions for each word, which the caller can process to actually filter the list.
decisions for each word, which the caller can process to actually filter the list.
"""
raise NotImplementedError

Expand Down

0 comments on commit 9c7b766

Please sign in to comment.