Update pyguide.md example to make it have consistent indentation

This commit is contained in:
Yongwoon Cho 2019-06-09 18:48:05 +09:00 committed by GitHub
parent 93303e758b
commit 7fd76753cd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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:
```
<a id="s3.19.4-default-values"></a>