From c9677f13aebfec3a9aceb320bfec101788e47f78 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Sun, 27 Jan 2019 10:19:00 +0100 Subject: [PATCH] Inline --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index c0e9187..0298b5a 100644 --- a/README.md +++ b/README.md @@ -529,6 +529,7 @@ from functools import reduce ```python from collections import namedtuple Point = namedtuple('Point', 'x y') +point = Point(0, 0) from enum import Enum Direction = Enum('Direction', 'n e s w')