From a8e3f83cda93bda7af5499e158e0a9ef3cf704b4 Mon Sep 17 00:00:00 2001 From: sneakers-the-rat Date: Thu, 12 Dec 2024 21:36:20 -0800 Subject: [PATCH] lint --- mio/devices/wirefree.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/mio/devices/wirefree.py b/mio/devices/wirefree.py index 751cc63..253926f 100644 --- a/mio/devices/wirefree.py +++ b/mio/devices/wirefree.py @@ -24,6 +24,7 @@ class WireFreeConfig(DeviceConfig): pass + @dataclass(kw_only=True) class WireFreeMiniscope(Miniscope, RecordingCameraMixin): """ @@ -69,7 +70,6 @@ def __post_init__(self) -> None: n_pix x 1 array used to store pixels while reading buffers """ - # -------------------------------------------------- # Properties # -------------------------------------------------- @@ -656,10 +656,10 @@ def resolution(self) -> Resolution: """Resolution of recorded video""" return Resolution(self.config.width, self.config.height) - def get(self, key:str) -> Any: + def get(self, key: str) -> Any: """get a configuration value by its name""" return getattr(self.config, key) - def set(self, key:str, value:Any) -> None: + def set(self, key: str, value: Any) -> None: """set a configuration value""" - raise NotImplementedError() \ No newline at end of file + raise NotImplementedError()