Skip to content

Commit a2628d4

Browse files
committed
Fix for TravisCI V2
1 parent bcbb8f6 commit a2628d4

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

machine_learning/word_frequency_functions.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,9 @@ def document_frequency(term: str, corpus: str) -> int:
7575
searching for and the number of documents in the corpus
7676
@examples :
7777
>>> corpus = \
78-
"This is the first document in the corpus.\n ThIs is the second document in the corpus. \n THIS is the third document in the corpus."
78+
"This is the first document in the corpus.\n ThIs is \
79+
the second document in the corpus. \n THIS is \
80+
the third document in the corpus."
7981
>>> term = "first"
8082
1
8183
>>> term = "document"

0 commit comments

Comments
 (0)