Skip to content

Commit 09d3241

Browse files
committed
Fixed typo and missed print statements
1 parent ffc6723 commit 09d3241

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/murfey/util/config.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ def machine_config_from_file(
161161

162162
def _update_nested_values(base: dict[str, Any], new: dict[str, Any]):
163163
"""
164-
Helper function to recursively update nested dictioanry values.
164+
Helper function to recursively update nested dictionary values.
165165
If the old and new values are both dicts, it will add the new keys and values
166166
to the existing dictionary recursively without overwriting entries.
167167
If the old and new values are both lists, it will extend the existing list.
@@ -192,7 +192,6 @@ def _update_nested_values(base: dict[str, Any], new: dict[str, Any]):
192192
# If instrument name is set, skip irrelevant configs
193193
if instrument_name and i != instrument_name:
194194
continue
195-
print(f"Parsing key {i}")
196195
# Construct instrument config hierarchically
197196
config: dict[str, Any] = {}
198197

0 commit comments

Comments
 (0)