Skip to content

Commit 671a714

Browse files
constraints: Fix progressbar message
1 parent 29ba5c8 commit 671a714

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bin/problem.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1379,7 +1379,7 @@ def validate_data(
13791379
action = "Invalidation"
13801380
elif mode == validate.Mode.VALID_OUTPUT:
13811381
action = "Output validation"
1382-
elif constraints:
1382+
elif constraints is not None:
13831383
action = f"Collecting {str(mode).capitalize()} constraints"
13841384
else:
13851385
action = f"{str(mode).capitalize()} validation"

0 commit comments

Comments
 (0)