From b021c1213f09a82f7b80ffef33ed61a6b14a4712 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Mon, 28 Jan 2019 12:44:51 +0100 Subject: [PATCH] Hashable --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1258847..a7eb5ae 100644 --- a/README.md +++ b/README.md @@ -654,7 +654,7 @@ class MyComparable: ```python class MyHashable: def __init__(self, a): - self.__a = a + self.__a = copy.deepcopy(a) @property def a(self): return self.__a