Skip to content

Commit 8ffbb52

Browse files
committed
oops
1 parent 32bc2b4 commit 8ffbb52

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

docs/code_style.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,17 +22,17 @@ Basically, PEP8
2222
depending on the size and shape of the arguments and what makes more sense to
2323
the author. In other words, both this::
2424

25-
print("I am a fish %s", "moo")
25+
print("I am a fish %s" % "moo")
2626

2727
and this::
2828

29-
print("I am a fish %s",
29+
print("I am a fish %s" %
3030
"moo")
3131

3232
and this::
3333

3434
print(
35-
"I am a fish %s",
35+
"I am a fish %s" %
3636
"moo"
3737
)
3838

0 commit comments

Comments
 (0)