Skip to content

Commit 2581c2b

Browse files
committed
Respond to PR comments
1 parent acb9454 commit 2581c2b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

fgpyo/util/metric.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@
1010
1111
The :class:`~fgpyo.util.metric.Metric` class makes it easy to read, write, and store one or metrics
1212
of the same type, all the while preserving types for each value in a metric. It is an abstract
13-
base class decorated by `dataclassees <https://docs.python.org/3/library/dataclasses.html>`_, or
14-
`attr <https://www.attrs.org/en/stable/examples.html>`_, with attributes storing one or more typed
15-
values. If using multiple layers of inheritance, keep in mind that it's not possible to mix these
16-
dataclass utils, e.g. a dataclasses class derived from an attr class will not appropriately
13+
base class decorated by `@dataclass <https://docs.python.org/3/library/dataclasses.html>`_, or
14+
`@attr.s <https://www.attrs.org/en/stable/examples.html>`_, with attributes storing one or more
15+
typed values. If using multiple layers of inheritance, keep in mind that it's not possible to mix
16+
these dataclass utils, e.g. a dataclasses class derived from an attr class will not appropriately
1717
initialize the values of the attr superclass.
1818
1919
Examples

0 commit comments

Comments
 (0)