Skip to content

Commit 297f76e

Browse files
committed
fix return value
1 parent b889e16 commit 297f76e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/private/config_settings.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ def _python_version_at_least_impl(ctx):
230230
# CI is, somehow, getting an empty string for the current flag value.
231231
# How isn't clear.
232232
if not flag_value:
233-
return "no"
233+
return [config_common.FeatureFlagInfo(value = "no")]
234234

235235
current = tuple([
236236
int(x)

0 commit comments

Comments
 (0)