Skip to content

Commit 885185a

Browse files
authored
Merge pull request realpython#800 from thinkerbot/patch-1
Indentation typo
2 parents 453cefb + d1f2412 commit 885185a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/writing/structure.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -633,7 +633,7 @@ with the class approach:
633633
634634
class CustomOpen(object):
635635
def __init__(self, filename):
636-
self.file = open(filename)
636+
self.file = open(filename)
637637
638638
def __enter__(self):
639639
return self.file

0 commit comments

Comments
 (0)