From 2effef7453986bf43a6d921cd471a8bc0722c36a Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Fri, 8 May 2020 07:39:57 -0400 Subject: [PATCH] Make the first dataclass example more useful (GH-19994) --- Doc/library/dataclasses.rst | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Doc/library/dataclasses.rst b/Doc/library/dataclasses.rst index c125a1130a9603..fe63d20671dd74 100644 --- a/Doc/library/dataclasses.rst +++ b/Doc/library/dataclasses.rst @@ -19,6 +19,8 @@ in :pep:`557`. The member variables to use in these generated methods are defined using :pep:`526` type annotations. For example this code:: + from dataclasses import dataclass + @dataclass class InventoryItem: '''Class for keeping track of an item in inventory.'''