Skip to content

Commit

Permalink
fixing package name issues
Browse files Browse the repository at this point in the history
  • Loading branch information
CameronDevine committed May 30, 2024
1 parent 9638bb3 commit 7fbe1ca
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion TEM_comms/buffer.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from emarfarap import BaseMessage
from pigeon import BaseMessage


class Status(BaseMessage):
Expand Down
2 changes: 1 addition & 1 deletion TEM_comms/camera.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from emarfarap import BaseMessage
from pigeon import BaseMessage

class Command(BaseMessage):
tile_id: str
Expand Down
2 changes: 1 addition & 1 deletion TEM_comms/scope.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from emarfarap import BaseMessage
from pigeon import BaseMessage
from typing import Literal
from pydantic import model_validator

Expand Down
2 changes: 1 addition & 1 deletion TEM_comms/stage/aperture.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from emarfarap import BaseMessage
from pigeon import BaseMessage

class Command(BaseMessage):
aperture_id: int | None = None
Expand Down
2 changes: 1 addition & 1 deletion TEM_comms/stage/motion.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from emarfarap import BaseMessage
from pigeon import BaseMessage

class Command(BaseMessage):
x: int | None = None
Expand Down
2 changes: 1 addition & 1 deletion TEM_comms/stage/rotation.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from emarfarap import BaseMessage
from pigeon import BaseMessage

class Command(BaseMessage):
angle_x: float | None = None
Expand Down
2 changes: 1 addition & 1 deletion TEM_comms/tile/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from emarfarap import BaseMessage
from pigeon import BaseMessage
from . import statistics


Expand Down
2 changes: 1 addition & 1 deletion TEM_comms/tile/statistics.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from emarfarap import BaseMessage
from pigeon import BaseMessage

class Focus(BaseMessage):
tile_id: str
Expand Down

0 comments on commit 7fbe1ca

Please sign in to comment.