dataclasses.rst: Prevent horizontal scrolling (gh-100025)

This commit is contained in:
Ram Rachum 2022-12-05 20:56:13 +02:00 committed by GitHub
parent 124ecd6576
commit 51ee0a29e9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -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:
...