Coverage for install/scipp/coords/options.py: 0%

8 statements  

« prev     ^ index     » next       coverage.py v7.4.0, created at 2024-04-28 01:28 +0000

1# SPDX-License-Identifier: BSD-3-Clause 

2# Copyright (c) 2023 Scipp contributors (https://github.com/scipp) 

3# @author Jan-Lukas Wynen 

4 

5import dataclasses 

6 

7 

8@dataclasses.dataclass(frozen=True) 

9class Options: 

10 """ 

11 Optional arguments of transform_coords. 

12 """ 

13 

14 rename_dims: bool 

15 keep_aliases: bool 

16 keep_intermediate: bool 

17 keep_inputs: bool 

18 quiet: bool