Skip to content

Commit

Permalink
file reorg
Browse files Browse the repository at this point in the history
  • Loading branch information
henrypinkard committed Jul 9, 2024
1 parent 762aab6 commit f530993
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
from typing import List, Union, Iterable



class MicroManagerDevice(Device):
"""
Base class for all Micro-Manager device_implementations, which enables access to their properties
Expand Down Expand Up @@ -50,8 +51,8 @@ def __setattr__(self, name, value):
if not self._core.has_property(self._device_name, name):
raise AttributeError(f"Device {self._device_name} does not have property {name}")
# check if read only
meta

if self.is_property_read_only(self._device_name, name):
raise ValueError("Read only properties cannot have values set")
else:
# private attributes are defined in the class
object.__setattr__(self, name, value)
Expand Down
Empty file.
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,11 @@
import itertools
from pycromanager import start_headless
from pycromanager.execution_engine.kernel.executor import ExecutionEngine
from pycromanager.execution_engine.devices.implementations.micromanager.mm_device_implementations import MicroManagerCamera
from pycromanager.execution_engine.implementations.events.event_implementations import (StartCapture, ReadoutImages,
StartContinuousCapture, StopCapture)
from pycromanager.execution_engine.kernel.data_handler import DataHandler
from pycromanager.execution_engine.storage.NDTiffandRAM import NDRAMStorage
from pycromanager.execution_engine.kernel.data_coords import DataCoordinates
from pycromanager.execution_engine.device_implementations.micromanager.mm_device_implementations import MicroManagerCamera
from pycromanager.execution_engine.storage_implementations.NDTiffandRAM import NDRAMStorage
from pycromanager.execution_engine.kernel.

@pytest.fixture(scope="module")
def setup_micromanager():
Expand Down

0 comments on commit f530993

Please sign in to comment.