We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d6f49c2 commit 6cdf4c9Copy full SHA for 6cdf4c9
1 file changed
mkconcore.py
@@ -309,13 +309,7 @@ def cleanup_script_files():
309
except (IndexError, AttributeError):
310
logging.debug('A node with no valid properties encountered and ignored')
311
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:
+for edge in edges_text:
319
try:
320
data = edge.find('data', recursive=False)
321
if data:
0 commit comments