Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: fix flake8 build #2907

Merged
merged 1 commit into from
Jan 23, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/scripts/nebius-manage-vm.py
Original file line number Diff line number Diff line change
Expand Up @@ -374,7 +374,7 @@ def wrapper(sdk: SDK, args: argparse.Namespace) -> callable:
logger.info("Next run will be at %s", time.ctime(next_run_time))
while (
time.time() < next_run_time
and time.time() - start_time < total_time_limit
and time.time() - start_time < total_time_limit # noqa: W503
):
time.sleep(1)
except Exception as e:
Expand Down
2 changes: 2 additions & 0 deletions .github/scripts/shell-extractor.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,8 @@ def parse_command_blocks(run_content):

def write_runs_to_files(runs, output_dir, prefix):
"""
Write run commands to files.

Write each run command to a .sh file with template {action name}-{index inside of action file}
in the given output_dir.

Expand Down
Loading