Coverage for install/scipp/coords/options.py: 0%
8 statements
« prev ^ index » next coverage.py v7.6.1, created at 2024-11-17 01:51 +0000
« prev ^ index » next coverage.py v7.6.1, created at 2024-11-17 01:51 +0000
1# SPDX-License-Identifier: BSD-3-Clause
2# Copyright (c) 2023 Scipp contributors (https://github.com/scipp)
3# @author Jan-Lukas Wynen
5import dataclasses
8@dataclasses.dataclass(frozen=True)
9class Options:
10 """
11 Optional arguments of transform_coords.
12 """
14 rename_dims: bool
15 keep_aliases: bool
16 keep_intermediate: bool
17 keep_inputs: bool
18 quiet: bool