Skip to content

Commit de6a6c6

Browse files
authored
Final QA update (#299)
1 parent 4e55db6 commit de6a6c6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
class WordCountString(str):
2-
def words(self, separator=" "):
2+
def words(self, separator=None):
33
return len(self.split(separator))
44

55

66
# from collections import UserString
77

88

99
# class WordCountString(UserString):
10-
# def words(self, separator=" "):
10+
# def words(self, separator=None):
1111
# return len(self.split(separator))

0 commit comments

Comments
 (0)