Skip to content

Commit 6645d37

Browse files
authored
♻️ Refactor usage of internal number_of_trials variable, it was not being used, fix typo (#75)
1 parent b04269e commit 6645d37

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

latest_changes/main.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ def main() -> None:
229229
)
230230
number_of_trials = 10
231231
logging.info(f"Number of trials (for race conditions): {number_of_trials}")
232-
for trial in range(10):
232+
for trial in range(number_of_trials):
233233
logging.info(f"Running trial: {trial}")
234234
logging.info(
235235
"Pulling the latest changes, including the latest merged PR (this one)"

latest_changes/model.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3214,7 +3214,7 @@ class WorkflowRun(BaseModel):
32143214
head_branch: str = Field(..., example='master')
32153215
head_sha: str = Field(
32163216
...,
3217-
description='The SHA of the head commit that points to the version of the worflow being run.',
3217+
description='The SHA of the head commit that points to the version of the workflow being run.',
32183218
example='009b8a3a9ccbb128af87f9b1c0f4c62e8a304f6d',
32193219
)
32203220
run_number: int = Field(

0 commit comments

Comments
 (0)