summaryrefslogtreecommitdiff
path: root/pint/delegates/txt_defparser/__init__.py
blob: 49e4a0bf55c8c25a192bd66aeb5a8275c1f4405c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
"""
    pint.delegates.txt_defparser
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~

    Parser for the original textual Pint Definition file.

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


from .defparser import DefParser

__all__ = [
    "DefParser",
]