Skip to content

Commit 6013ec1

Browse files
authored
v1.3.1
version 1.3.1
2 parents cc76996 + 22fd972 commit 6013ec1

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

pyobs_fli/flifilterwheel.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import logging
2-
from typing import Tuple, Any, Optional, Dict, List
2+
from typing import Tuple, Any, Optional, Dict, List, Union
33
from itertools import chain
44

55
from pyobs.mixins import MotionStatusMixin
@@ -18,7 +18,7 @@ class FliFilterWheel(FliBaseMixin, Module, MotionStatusMixin, IFilters, IFitsHea
1818

1919
__module__ = "pyobs_fli"
2020

21-
def __init__(self, filter_names: Optional[List[str], List[List[str]]], **kwargs: Any):
21+
def __init__(self, filter_names: Union[List[str], List[List[str]]], **kwargs: Any):
2222
"""Initializes a new FliFilterWheel.
2323
2424
Args:

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "pyobs-fli"
3-
version = "1.3.0"
3+
version = "1.3.1"
44
description = "pyobs module for FLI cameras"
55
authors = ["Tim-Oliver Husser <[email protected]>"]
66
license = "MIT"

0 commit comments

Comments
 (0)