File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 10
10
11
11
The :class:`~fgpyo.util.metric.Metric` class makes it easy to read, write, and store one or metrics
12
12
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
17
17
initialize the values of the attr superclass.
18
18
19
19
Examples
You can’t perform that action at this time.
0 commit comments