From 3a9b49ec32d4e7a1f903865fd4ec82c489c05921 Mon Sep 17 00:00:00 2001 From: Matthew Fernandez Date: Sat, 4 Sep 2021 09:47:28 -0700 Subject: [PATCH] vuln.py: address a Pylint missing-function-docstring warning --- tests/regression_tests/vuln/vuln.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/regression_tests/vuln/vuln.py b/tests/regression_tests/vuln/vuln.py index 3448aa3e3..d802b68bc 100644 --- a/tests/regression_tests/vuln/vuln.py +++ b/tests/regression_tests/vuln/vuln.py @@ -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) -- 2.40.0