Skip to content

Commit

Permalink
Try to fix failing tests with older python versions
Browse files Browse the repository at this point in the history
  • Loading branch information
Julfried committed Oct 29, 2024
1 parent 7b421f5 commit dcccbb4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pylint/pyreverse/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -234,9 +234,9 @@
"group": OPTIONS_GROUPS["OUTPUT"],
"help": (
"Create a *.<format> output file if format is available. Available "
f"formats are: {', '.join(["." + format for format in DIRECTLY_SUPPORTED_FORMATS])}. Any other "
f"format will be tried to be created by using the 'dot' command line "
f"tool, which requires a graphviz installation. In this case, these additional "
f"formats are: {', '.join('.' + fmt for fmt in DIRECTLY_SUPPORTED_FORMATS)}. Any other "
"format will be tried to be created by using the 'dot' command line "
"tool, which requires a graphviz installation. In this case, these additional "
"formats are available (see `Graphviz output formats <https://graphviz.org/docs/outputs/>`_)."
),
},
Expand Down

0 comments on commit dcccbb4

Please sign in to comment.