Browse Source

Hashable

pull/10/head
Jure Šorn 5 years ago
parent
commit
b021c1213f
1 changed files with 1 additions and 1 deletions
  1. 2
      README.md

2
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

Loading…
Cancel
Save