Skip to content

Commit 57d8fa0

Browse files
authored
Follow idiomatic Python coding style (#9763)
1 parent ae2e780 commit 57d8fa0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

update-since-todo.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -102,8 +102,8 @@ def analyze_files(commits_and_tags, dry_run=False):
102102
"*.js",
103103
]
104104

105-
runningInCI = os.environ.get("CI", "false") == "true"
106-
if runningInCI:
105+
is_ci = "CI" in os.environ
106+
if is_ci:
107107
print("<details><summary>Detailed output</summary>\n\n")
108108
with subprocess.Popen(cmd, stdout=subprocess.PIPE) as proc:
109109
for line in io.TextIOWrapper(proc.stdout):
@@ -113,7 +113,7 @@ def analyze_files(commits_and_tags, dry_run=False):
113113
if retcode:
114114
raise subprocess.CalledProcessError(retcode, cmd)
115115
print()
116-
if runningInCI:
116+
if is_ci:
117117
print("</details>\n")
118118

119119

0 commit comments

Comments
 (0)