diff --git a/pyobs_sbig/sbigcamera.py b/pyobs_sbig/sbigcamera.py index 37c4168..883fad2 100644 --- a/pyobs_sbig/sbigcamera.py +++ b/pyobs_sbig/sbigcamera.py @@ -2,7 +2,7 @@ import logging import math from datetime import datetime -from typing import Any, Tuple, Dict +from typing import Any, Tuple, Dict, List import numpy as np from pyobs.images import Image @@ -210,6 +210,9 @@ async def _abort_exposure(self) -> None: """ await self._change_exposure_status(ExposureStatus.IDLE) + async def list_binnings(self, **kwargs: Any) -> List[Tuple[int, int]]: + return [(1, 1), (2, 2), (3, 3)] + async def get_binning(self, **kwargs: Any) -> Tuple[int, int]: """Returns the camera binning. diff --git a/pyproject.toml b/pyproject.toml index 701564b..10ecb85 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pyobs-sbig" -version = "1.0.5" +version = "1.0.6" description = "pyobs module for SBIG cameras" authors = ["Tim-Oliver Husser "] license = "MIT"