From b96348a8e5b03682d234e59b424be66037cf2c89 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Wed, 27 Feb 2019 18:44:37 +0100 Subject: [PATCH] Format --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ebaaab8..a77dffd 100644 --- a/README.md +++ b/README.md @@ -318,7 +318,7 @@ Format ``` ```python ->>> Person = namedtuple('Person', 'name height') +>>> Person = collections.namedtuple('Person', 'name height') >>> person = Person('Jean-Luc', 187) >>> f'{person.height}' '187'