Skip to content

Commit 6cdf4c9

Browse files
committed
Drop unrelated duplicate-label change from docker subdir PR
1 parent d6f49c2 commit 6cdf4c9

1 file changed

Lines changed: 1 addition & 7 deletions

File tree

mkconcore.py

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -309,13 +309,7 @@ def cleanup_script_files():
309309
except (IndexError, AttributeError):
310310
logging.debug('A node with no valid properties encountered and ignored')
311311

312-
label_values = list(nodes_dict.values())
313-
duplicates = {label for label in label_values if label_values.count(label) > 1}
314-
if duplicates:
315-
logging.error(f"Duplicate node labels found: {sorted(duplicates)}")
316-
quit()
317-
318-
for edge in edges_text:
312+
for edge in edges_text:
319313
try:
320314
data = edge.find('data', recursive=False)
321315
if data:

0 commit comments

Comments
 (0)