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

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):