remove %s formatting from docs

This commit is contained in:
boris
2019-08-12 00:09:53 -06:00
parent a77c83a4c3
commit 3eb4973065
9 changed files with 18 additions and 18 deletions

View File

@@ -177,7 +177,7 @@ class TestRaises:
def test_reinterpret_fails_with_print_for_the_fun_of_it(self):
items = [1, 2, 3]
print("items is %r" % items)
print("items is {!r}".format(items))
a, b = items.pop()
def test_some_error(self):