We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a7f15ba commit e48405aCopy full SHA for e48405a
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