Skip to content

Commit c1128ce

Browse files
committed
スクリプトの不要なセミコロンを削除
1 parent 0c54fa4 commit c1128ce

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/script/create_github_issue_when_not_empty.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ def main():
2323
}
2424
try:
2525
with open(file_name, 'r') as file:
26-
data = file.read();
26+
data = file.read()
2727
if len(data) == 0:
2828
return
2929
body = f"The commit hash was: {commit_hash}\n\n" + data

.github/workflows/script/link_check.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
urllib3.disable_warnings()
1313

1414
def retry_sleep():
15-
sec = random.uniform(20, 30);
15+
sec = random.uniform(20, 30)
1616
time.sleep(sec)
1717

1818
def check_url(url: str, retry: int = 5) -> tuple[bool, str]:

0 commit comments

Comments
 (0)