summaryrefslogtreecommitdiff
path: root/pint/facets/formatting/registry.py
blob: bd9c74c511174c21fff17656e667c64105ec8847 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
"""
    pint.facets.formatting.registry
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

    :copyright: 2022 by Pint Authors, see AUTHORS for more details.
    :license: BSD, see LICENSE for more details.
"""

from __future__ import annotations

from ..plain import PlainRegistry
from .objects import FormattingQuantity, FormattingUnit


class FormattingRegistry(PlainRegistry):
    _quantity_class = FormattingQuantity
    _unit_class = FormattingUnit