From 7fd76753cd00dec650db8f3ce1fd86d5137abe3d Mon Sep 17 00:00:00 2001 From: Yongwoon Cho Date: Sun, 9 Jun 2019 18:48:05 +0900 Subject: [PATCH] Update pyguide.md example to make it have consistent indentation --- pyguide.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyguide.md b/pyguide.md index 7303c58..dc4ef42 100644 --- a/pyguide.md +++ b/pyguide.md @@ -2397,8 +2397,8 @@ class that is defined below -- use a string for the class name. ```python class MyClass(object): - def __init__(self, - stack: List["MyClass"]) -> None: + def __init__(self, + stack: List["MyClass"]) -> None: ```