]> granicus.if.org Git - graphviz/commitdiff
vuln.py: address a Pylint missing-function-docstring warning
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Sat, 4 Sep 2021 16:47:28 +0000 (09:47 -0700)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Thu, 9 Sep 2021 02:16:32 +0000 (19:16 -0700)
tests/regression_tests/vuln/vuln.py

index 3448aa3e37cef03fbdd5f68a75db50d7e4cbec51..d802b68bc5a629b3e766105b89f233bcaf953f37 100644 (file)
@@ -22,6 +22,9 @@ output_types = [
 ]
 
 def generate_vuln_graph(vulnfile, output_type):
+  """
+  Generate a graph from the given file in the given output format.
+  """
   if not Path("output").exists():
     Path("output").mkdir(parents=True)