From d1f24121eff4ea20dd31619261cba91bef7356f0 Mon Sep 17 00:00:00 2001 From: Simon Chiang Date: Fri, 24 Feb 2017 08:21:52 -0700 Subject: [PATCH] Indentation typo --- docs/writing/structure.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/writing/structure.rst b/docs/writing/structure.rst index 3d7413e..5d09fe3 100644 --- a/docs/writing/structure.rst +++ b/docs/writing/structure.rst @@ -633,7 +633,7 @@ with the class approach: class CustomOpen(object): def __init__(self, filename): - self.file = open(filename) + self.file = open(filename) def __enter__(self): return self.file