Skip to content

Commit

Permalink
Update synchrotron db file paths (#38)
Browse files Browse the repository at this point in the history
  • Loading branch information
abbiemery authored Feb 20, 2023
1 parent 32f1d26 commit 1a7d7a7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/tickit_devices/synchrotron/synchrotron_current.py
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ class SynchrotronCurrent(ComponentConfig):
host: str = "localhost"
port: int = 25565
format: ByteFormat = ByteFormat(b"%b\r\n")
db_file: str = "tickit_devices/synchrotron/db_files/DCCT.db"
db_file: str = "src/tickit_devices/synchrotron/db_files/DCCT.db"
ioc_name: str = "BL03S-SR-DI-DCCT-01"

def __call__(self) -> Component: # noqa: D102
Expand Down
2 changes: 1 addition & 1 deletion src/tickit_devices/synchrotron/synchrotron_machine.py
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ class SynchrotronMachineStatus(ComponentConfig):
host: str = "localhost"
port: int = 25565
format: ByteFormat = ByteFormat(b"%b\r\n")
db_file: str = "tickit_devices/synchrotron/db_files/MSTAT.db"
db_file: str = "src/tickit_devices/synchrotron/db_files/MSTAT.db"
ioc_name: str = "BL03S-CS-CS-MSTAT-01"

def __call__(self) -> Component: # noqa: D102
Expand Down
2 changes: 1 addition & 1 deletion src/tickit_devices/synchrotron/synchrotron_topup.py
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ class SynchrotronTopUp(ComponentConfig):
host: str = "localhost"
port: int = 25565
format: ByteFormat = ByteFormat(b"%b\r\n")
db_file: str = "tickit_devices/synchrotron/db_files/FILL.db"
db_file: str = "src/tickit_devices/synchrotron/db_files/FILL.db"
ioc_name: str = "BL03S-SR-CS-FILL-01"

def __call__(self) -> Component: # noqa: D102
Expand Down

0 comments on commit 1a7d7a7

Please sign in to comment.