Fix indentation in `__post_init__` documentation. (gh-114666)

This commit is contained in:
Bhushan Mohanraj 2024-01-28 15:10:32 -05:00 committed by GitHub
parent 5ecfd750b4
commit d00fbed68f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -538,8 +538,8 @@ that has to be called, it is common to call this method in a
class Rectangle:
def __init__(self, height, width):
self.height = height
self.width = width
self.height = height
self.width = width
@dataclass
class Square(Rectangle):