Skip to content

Commit 9341623

Browse files
author
MomIsBestFriend
committed
Imporved docstring for spaces test case, as datapythonista suggested
1 parent ef00c68 commit 9341623

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

scripts/validate_string_concatenation.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -143,16 +143,16 @@ def strings_with_wrong_placed_space(
143143
144144
For example:
145145
146-
>>> foo = (
147-
... "bar "
148-
... "baz"
146+
>>> rule = (
147+
... "We want the space at the end of the line, "
148+
... "not at the beginning"
149149
... )
150150
151151
Instead of:
152152
153-
>>> foo = (
154-
... "bar"
155-
... " baz"
153+
>>> rule = (
154+
... "We want the space at the end of the line,"
155+
... " not at the beginning"
156156
... )
157157
158158
Parameters

0 commit comments

Comments
 (0)