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

    Adds pint the capability to contexts: predefined conversions
    between incompatible dimensions.

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

from __future__ import annotations

from .definitions import ContextDefinition
from .objects import Context
from .registry import ContextRegistry

__all__ = [ContextDefinition, Context, ContextRegistry]