Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
sneakers-the-rat committed Dec 13, 2024
1 parent e2af9d3 commit e0d61ca
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 13 deletions.
10 changes: 5 additions & 5 deletions mio/devices/wirefree.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@
import numpy as np
from tqdm import tqdm

from miniscope_io import init_logger
from miniscope_io.devices import DeviceConfig, Miniscope, RecordingCameraMixin
from miniscope_io.exceptions import EndOfRecordingException, ReadHeaderException
from miniscope_io.models.data import Frame
from miniscope_io.models.sdcard import SDBufferHeader, SDConfig, SDLayout
from mio import init_logger
from mio.devices import DeviceConfig, Miniscope, RecordingCameraMixin
from mio.exceptions import EndOfRecordingException, ReadHeaderException
from mio.models.data import Frame
from mio.models.sdcard import SDBufferHeader, SDConfig, SDLayout


class WireFreeConfig(DeviceConfig):
Expand Down
4 changes: 2 additions & 2 deletions mio/models/pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@

from pydantic import Field

from miniscope_io.exceptions import ConfigurationMismatchError
from miniscope_io.models.models import MiniscopeConfig, PipelineModel
from mio.exceptions import ConfigurationMismatchError
from mio.models.models import MiniscopeConfig, PipelineModel

if sys.version_info < (3, 11):
from typing_extensions import Self
Expand Down
6 changes: 1 addition & 5 deletions mio/sources/mocks.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,7 @@

class okDevMock:
"""
<<<<<<<< HEAD:miniscope_io/sources/mocks.py
Mock class for :class:`~miniscope_io.sources.opalkelly.okDev`
========
Mock class for :class:`~mio.devices.opalkelly.okDev`
>>>>>>>> main:mio/devices/mocks.py
Mock class for :class:`~mio.sources.opalkelly.okDev`
"""

DATA_FILE: Optional[Path] = None
Expand Down
2 changes: 1 addition & 1 deletion mio/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import sys
from os import PathLike
from pathlib import Path
from typing import Annotated, Any, Tuple, Union, NamedTuple, Tuple, Union
from typing import Annotated, Any, NamedTuple, Tuple, Union

from pydantic import AfterValidator, Field

Expand Down

0 comments on commit e0d61ca

Please sign in to comment.