Skip to content

Commit bb7c597

Browse files
committed
Fix typo: netsed->nested
1 parent 8b31ebc commit bb7c597

File tree

1 file changed

+2
-2
lines changed
  • easybuild/framework/easyconfig/format

1 file changed

+2
-2
lines changed

easybuild/framework/easyconfig/format/format.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -433,7 +433,7 @@ def _squash(self, vt_tuple, processed, sanity):
433433
# walk over dictionary of parsed sections, and check for marker conflicts (using .add())
434434
for key, value in processed.items():
435435
if isinstance(value, NestedDict):
436-
tmp = self._squash_netsed_dict(key, value, squashed, sanity, vt_tuple)
436+
tmp = self._squash_nested_dict(key, value, squashed, sanity, vt_tuple)
437437
res_sections.update(tmp)
438438
elif key in self.VERSION_OPERATOR_VALUE_TYPES:
439439
self.log.debug("Found VERSION_OPERATOR_VALUE_TYPES entry (%s)" % key)
@@ -453,7 +453,7 @@ def _squash(self, vt_tuple, processed, sanity):
453453
(processed, squashed.versions, squashed.result))
454454
return squashed
455455

456-
def _squash_netsed_dict(self, key, nested_dict, squashed, sanity, vt_tuple):
456+
def _squash_nested_dict(self, key, nested_dict, squashed, sanity, vt_tuple):
457457
"""
458458
Squash NestedDict instance, returns dict with already squashed data
459459
from possible higher sections

0 commit comments

Comments
 (0)