Skip to content

Commit e0b0411

Browse files
committed
Unnecessary movement of components
1 parent ce1728f commit e0b0411

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/murfey/client/instance_environment.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,16 +42,16 @@ class MurfeyInstanceEnvironment(BaseModel):
4242
destination_registry: Dict[str, str] = {}
4343
watchers: Dict[Path, DirWatcher] = {}
4444
demo: bool = False
45+
data_collection_group_ids: Dict[str, int] = {}
46+
data_collection_ids: Dict[str, int] = {}
47+
processing_job_ids: Dict[str, Dict[str, int]] = {}
48+
autoproc_program_ids: Dict[str, Dict[str, int]] = {}
4549
id_tag_registry: Dict[str, List[str]] = {
4650
"data_collection_group": [],
4751
"data_collection": [],
4852
"processing_job": [],
4953
"auto_proc_program": [],
5054
}
51-
data_collection_group_ids: Dict[str, int] = {}
52-
data_collection_ids: Dict[str, int] = {}
53-
processing_job_ids: Dict[str, Dict[str, int]] = {}
54-
autoproc_program_ids: Dict[str, Dict[str, int]] = {}
5555
data_collection_parameters: dict = {}
5656
movies: Dict[Path, MovieTracker] = {}
5757
listeners: Dict[str, Set[Callable]] = {}

0 commit comments

Comments
 (0)