Skip to content

Commit a16ba1c

Browse files
committed
adjusting line length for black
1 parent 3a54422 commit a16ba1c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

spacy/examples.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,9 @@ def preprocess_token(token):
288288

289289

290290
complete_filtered_tokens = [
291-
preprocess_token(token) for token in complete_doc if is_token_allowed(token)
291+
preprocess_token(token)
292+
for token in complete_doc
293+
if is_token_allowed(token)
292294
]
293295

294296
print(complete_filtered_tokens)

0 commit comments

Comments
 (0)