Skip to content
Snippets Groups Projects
Commit bb506454 authored by Sebastian Müller's avatar Sebastian Müller 🐈
Browse files

add Mask to top level

parent b925f4ee
No related branches found
No related tags found
1 merge request!286Add mask to Info object
......@@ -79,6 +79,7 @@ Utilities for data and metadata handling.
:caption: Data tools
Info
Mask
UNITS
Interfaces
......@@ -135,6 +136,7 @@ Built-in components, adapters and tool functions.
tools
"""
from . import adapters, data, interfaces, modules, schedule, sdk, tools
from .data.grid_spec import (
EsriGrid,
......@@ -145,7 +147,7 @@ from .data.grid_spec import (
UnstructuredPoints,
)
from .data.grid_tools import CellType, Location
from .data.tools import UNITS, Info
from .data.tools import UNITS, Info, Mask
from .errors import (
FinamCircularCouplingError,
FinamConnectError,
......@@ -225,7 +227,7 @@ __all__ += [
"UnstructuredPoints",
]
__all__ += ["CellType", "Location"]
__all__ += ["UNITS", "Info"]
__all__ += ["UNITS", "Info", "Mask"]
__all__ += [
"FinamCircularCouplingError",
"FinamConnectError",
......
......@@ -47,6 +47,7 @@ Data tools
:noindex: UNITS
:noindex: Info
:noindex: Mask
assert_type
check
check_quantified
......@@ -92,6 +93,7 @@ from .grid_tools import (
from .tools import (
UNITS,
Info,
Mask,
assert_type,
check,
check_data_covers_domain,
......@@ -139,6 +141,7 @@ __all__ += [
"UNITS",
"FinamDataError",
"Info",
"Mask",
"assert_type",
"check",
"check_quantified",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment