Skip to content

Commit 8646350

Browse files
authored
Merge pull request #300 – intro/magic: Don't inherit from object in Python 3
#300
2 parents 780c1b7 + a8608c1 commit 8646350

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lessons/intro/magic/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -486,7 +486,7 @@ Funguje podobně jako `@property`, jen se výsledek vypočítá pouze jednou a u
486486
Při dalším přístupu k atributu už se použije uložená hodnota.
487487

488488
```python
489-
class reify(object):
489+
class reify:
490490
def __init__(self, func):
491491
self.func = func
492492

0 commit comments

Comments
 (0)