Skip to content

Commit

Permalink
dataclasses.rst: Prevent horizontal scrolling (pythongh-100025)
Browse files Browse the repository at this point in the history
  • Loading branch information
cool-RR authored Dec 5, 2022
1 parent 124ecd6 commit 51ee0a2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Doc/library/dataclasses.rst
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,8 @@ Module contents
class C:
...

@dataclass(init=True, repr=True, eq=True, order=False, unsafe_hash=False, frozen=False, match_args=True, kw_only=False, slots=False, weakref_slot=False)
@dataclass(init=True, repr=True, eq=True, order=False, unsafe_hash=False, frozen=False,
match_args=True, kw_only=False, slots=False, weakref_slot=False)
class C:
...

Expand Down

0 comments on commit 51ee0a2

Please sign in to comment.