Skip to content

Commit

Permalink
Single quote for Python
Browse files Browse the repository at this point in the history
  • Loading branch information
carl-baillargeon committed Nov 7, 2024
1 parent 3dede8b commit d3abe57
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion anta/runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ def log_run_information(
f"Tests: {test_count} total\n"
f"Limits:\n"
f" Max concurrent tests: {max_concurrency}\n"
f" Max connections per device: {"Unlimited" if max_connections is None else max_connections}\n"
f" Max connections per device: {'Unlimited' if max_connections is None else max_connections}\n"
f" Max file descriptors: {file_descriptor_limit}\n"
f"{'':-^{width}}"
)
Expand Down

0 comments on commit d3abe57

Please sign in to comment.