Skip to content

Commit fe96e8c

Browse files
committed
fix skipping logic
1 parent 45101a2 commit fe96e8c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tooling/src/hypothesistooling/__main__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ def accept(fn):
4040
def wrapped(*args, **kwargs):
4141
if if_changed and tools.IS_PULL_REQUEST:
4242
if not tools.has_changes(if_changed + BUILD_FILES):
43-
changed = ", ".join(if_changed)
43+
changed = ", ".join(map(str, if_changed))
4444
print(f"Skipping task due to no changes in {changed}")
4545
return
4646
fn(*args, **kwargs)

0 commit comments

Comments
 (0)