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 45101a2 commit fe96e8cCopy full SHA for fe96e8c
tooling/src/hypothesistooling/__main__.py
@@ -40,7 +40,7 @@ def accept(fn):
40
def wrapped(*args, **kwargs):
41
if if_changed and tools.IS_PULL_REQUEST:
42
if not tools.has_changes(if_changed + BUILD_FILES):
43
- changed = ", ".join(if_changed)
+ changed = ", ".join(map(str, if_changed))
44
print(f"Skipping task due to no changes in {changed}")
45
return
46
fn(*args, **kwargs)
0 commit comments