Skip to content

Commit ff4c623

Browse files
committed
Merge branch 'gsm-dev'
2 parents 5f0e708 + a781b15 commit ff4c623

File tree

1 file changed

+3
-2
lines changed
  • aalpy/learning_algs/general_passive

1 file changed

+3
-2
lines changed

aalpy/learning_algs/general_passive/Node.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -91,8 +91,9 @@ def check_data_format(value):
9191
for data_point in data:
9292
if len(data_point) != 2:
9393
data_format = check_data_format("traces")
94-
if not check_consistency:
95-
return data_format
94+
if check_consistency:
95+
continue
96+
return data_format
9697
o1, o2 = data_point
9798
if not isinstance(o1, accepted_types):
9899
data_format = check_data_format("traces")

0 commit comments

Comments
 (0)