diff options
author | Daniƫl van Noord <13665637+DanielNoord@users.noreply.github.com> | 2022-04-28 23:22:09 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-28 23:22:09 +0200 |
commit | f7316cac552e5c98e931b44597358dc41256bc1e (patch) | |
tree | c3ed2d57d735187a8f83ead68766c6edb2ee6af3 /pylint/graph.py | |
parent | 7dd8d5158ef4dc7cc2dc732c60b8760894cbb47e (diff) | |
download | pylint-git-f7316cac552e5c98e931b44597358dc41256bc1e.tar.gz |
Run development version of ``pydocstringformatter`` (#6469)
Diffstat (limited to 'pylint/graph.py')
-rw-r--r-- | pylint/graph.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pylint/graph.py b/pylint/graph.py index 3c8af5bb6..82c10dc88 100644 --- a/pylint/graph.py +++ b/pylint/graph.py @@ -167,7 +167,7 @@ def get_cycles( graph_dict: dict[str, set[str]], vertices: list[str] | None = None ) -> Sequence[list[str]]: """Return a list of detected cycles in a dictionary representing an ordered graph - (i.e. key are vertices and values is a list of destination vertices representing edges) + (i.e. key are vertices and values is a list of destination vertices representing edges). """ if not graph_dict: return () |