Skip to content

Commit 7abf61e

Browse files
committed
Fix config paths
1 parent 1713bd5 commit 7abf61e

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

instamatic/config/__init__.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -272,13 +272,13 @@ def load_all(microscope_name: str = None,
272272
'logs': logs_drc,
273273
'scripts': scripts_drc,
274274
'camera': alignments_drc,
275-
'microscope': calibration.location.parent,
276-
'calibration': microscope.location.parent,
275+
'calibration': calibration.location.parent,
276+
'microscope': microscope.location.parent,
277277
'alignments': camera.location.parent,
278278
'data': settings.data_directory,
279279
'work': settings.work_directory,
280-
'microscope_config': calibration.location,
281-
'calibration_config': microscope.location,
280+
'calibration_config': calibration.location,
281+
'microscope_config': microscope.location,
282282
'alignments_config': camera.location,
283283
'settings': config_drc / _settings_yaml,
284284
'defaults': config_drc / _defaults_yaml,

0 commit comments

Comments
 (0)