summaryrefslogtreecommitdiff
path: root/pint/facets/numpy/registry.py
blob: fa4768f37ac840f8fa781a5cea47dcdb4dc41920 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
"""
    pint.facets.numpy.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 .quantity import NumpyQuantity
from .unit import NumpyUnit


class NumpyRegistry(PlainRegistry):
    _quantity_class = NumpyQuantity
    _unit_class = NumpyUnit