Skip to content

Commit 84ce114

Browse files
committed
black
1 parent 2a4ed65 commit 84ce114

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

rasa/nlu/featurizers/count_vectors_featurizer.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,9 @@ def _attributes(analyzer):
187187
"""Create a list of attributes that should be featurized."""
188188

189189
# intents should be featurized only by word level count vectorizer
190-
return MESSAGE_ATTRIBUTES if analyzer == "word" else SPACY_FEATURIZABLE_ATTRIBUTES
190+
return (
191+
MESSAGE_ATTRIBUTES if analyzer == "word" else SPACY_FEATURIZABLE_ATTRIBUTES
192+
)
191193

192194
def __init__(
193195
self,

0 commit comments

Comments
 (0)