Skip to content

Commit fe7c5e0

Browse files
[bad-str-strip-call] Use the new template with multiple files
1 parent e961e5c commit fe7c5e0

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
"Hello World".strip("Hello") # [bad-str-strip-call]
2+
# >>> ' World'
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,2 @@
1-
"Hello World".strip("Hello") # [bad-str-strip-call]
2-
# >>> ' World'
31
"abcbc def bacabc".strip("abcbc ") # [bad-str-strip-call]
42
# >>> 'def'
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
"Hello World".strip("Helo")
2+
# >>> ' World'
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,2 @@
1-
"Hello World".strip("Helo")
2-
# >>> ' World'
31
"abcbc def bacabc".strip("abc ")
42
# >>> 'def'

0 commit comments

Comments
 (0)