Skip to content

Commit

Permalink
fix lint issue only caught on github ci
Browse files Browse the repository at this point in the history
  • Loading branch information
bgunnar5 committed Nov 2, 2023
1 parent ee6b9dc commit e833dce
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion merlin/common/tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -480,7 +480,7 @@ def expand_tasks_with_samples( # pylint: disable=R0913,R0914
if not found_tasks:
for next_index_path, next_index in sample_index.traverse(conditional=condition):
LOG.info(
f"generating next step for range {next_index.min}:{next_index.max} {next_index.max-next_index.min}"
f"generating next step for range {next_index.min}:{next_index.max} {next_index.max - next_index.min}"
)
next_index.name = next_index_path

Expand Down
2 changes: 1 addition & 1 deletion tests/integration/run_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ def run_tests(args, tests): # pylint: disable=R0914
total += 1
continue
dot_length = 50 - len(test_name) - len(str(test_label))
print(f"TEST {test_label}: {test_name}{'.'*dot_length}", end="")
print(f"TEST {test_label}: {test_name}{'.' * dot_length}", end="")
# Check the format of the test definition
definition_issues = get_definition_issues(test)
if definition_issues:
Expand Down

0 comments on commit e833dce

Please sign in to comment.