summaryrefslogtreecommitdiff
path: root/pylint/pyreverse
diff options
context:
space:
mode:
authorDaniël van Noord <13665637+DanielNoord@users.noreply.github.com>2022-09-04 14:10:42 +0200
committerDaniël van Noord <13665637+DanielNoord@users.noreply.github.com>2022-09-09 11:05:22 +0200
commit713c5d7477287846530af63ad64e5e905f388e61 (patch)
tree5523b44fd2255a4339bb4d8d931f917fc3c29440 /pylint/pyreverse
parentc0272571bcdba466f237e0aeadff289e53f8bedd (diff)
downloadpylint-git-713c5d7477287846530af63ad64e5e905f388e61.tar.gz
Finish some unfinished typing signatures
Diffstat (limited to 'pylint/pyreverse')
-rw-r--r--pylint/pyreverse/vcg_printer.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/pylint/pyreverse/vcg_printer.py b/pylint/pyreverse/vcg_printer.py
index fe94edab4..805a22d49 100644
--- a/pylint/pyreverse/vcg_printer.py
+++ b/pylint/pyreverse/vcg_printer.py
@@ -265,7 +265,9 @@ class VCGPrinter(Printer):
)
self.emit("}")
- def _write_attributes(self, attributes_dict: Mapping[str, Any], **args) -> None:
+ def _write_attributes(
+ self, attributes_dict: Mapping[str, Any], **args: Any
+ ) -> None:
"""Write graph, node or edge attributes."""
for key, value in args.items():
try: