Skip to content

Commit 83d8c26

Browse files
committed
lint
1 parent 3e0232b commit 83d8c26

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.evergreen/scripts/generate_config_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@ def generate_yaml(tasks=None, variants=None):
273273
out = ShrubService.generate_yaml(project)
274274
# Dedent by two spaces to match what we use in config.yml
275275
lines = [line[2:] for line in out.splitlines()]
276-
print("\n".join(lines)) # noqa: T201
276+
print("\n".join(lines))
277277

278278

279279
##################

.evergreen/scripts/resync-all-specs.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
def resync_specs(directory: pathlib.Path, errored: dict[str, str]) -> None:
1313
"""Actually sync the specs"""
14-
print("Beginning to sync specs") # noqa: T201
14+
print("Beginning to sync specs")
1515
for spec in os.scandir(directory):
1616
if not spec.is_dir():
1717
continue
@@ -27,11 +27,11 @@ def resync_specs(directory: pathlib.Path, errored: dict[str, str]) -> None:
2727
)
2828
except CalledProcessError as exc:
2929
errored[spec.name] = exc.stderr
30-
print("Done syncing specs") # noqa: T201
30+
print("Done syncing specs")
3131

3232

3333
def apply_patches():
34-
print("Beginning to apply patches") # noqa: T201
34+
print("Beginning to apply patches")
3535
subprocess.run(["bash", "./.evergreen/remove-unimplemented-tests.sh"], check=True) # noqa: S603, S607
3636
subprocess.run(
3737
["git apply -R --allow-empty --whitespace=fix ./.evergreen/spec-patch/*"], # noqa: S607
@@ -96,7 +96,7 @@ def write_summary(errored: dict[str, str], new: list[str], filename: Optional[st
9696
pr_body += "\n"
9797
if pr_body != "":
9898
if filename is None:
99-
print(f"\n{pr_body}") # noqa: T201
99+
print(f"\n{pr_body}")
100100
else:
101101
with open(filename, "w") as f:
102102
# replacements made for proper json

0 commit comments

Comments
 (0)