There was an error while loading. Please reload this page.
1 parent e08c673 commit e726a90Copy full SHA for e726a90
Doc/library/dataclasses.rst
@@ -33,7 +33,7 @@ using :pep:`526` type annotations. For example this code::
33
34
Will add, among other things, a :meth:`__init__` that looks like::
35
36
- def __init__(self, name: str, unit_price: float, quantity_on_hand: int=0):
+ def __init__(self, name: str, unit_price: float, quantity_on_hand: int = 0):
37
self.name = name
38
self.unit_price = unit_price
39
self.quantity_on_hand = quantity_on_hand
0 commit comments