Skip to content

Commit

Permalink
v1.0.6
Browse files Browse the repository at this point in the history
version 1.0.6
  • Loading branch information
thusser authored Nov 10, 2023
2 parents 957b554 + 85ef706 commit f4d58f7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion pyobs_sbig/sbigcamera.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>"]
license = "MIT"
Expand Down

0 comments on commit f4d58f7

Please sign in to comment.