From ea0ad70a2ede93a5fe802ad85cef453368346a16 Mon Sep 17 00:00:00 2001 From: Josselin Date: Tue, 12 Jan 2021 11:25:24 +0100 Subject: [PATCH] Fix pylint --- slither/printers/inheritance/inheritance_graph.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/slither/printers/inheritance/inheritance_graph.py b/slither/printers/inheritance/inheritance_graph.py index 396680bb6..f0da17c59 100644 --- a/slither/printers/inheritance/inheritance_graph.py +++ b/slither/printers/inheritance/inheritance_graph.py @@ -189,7 +189,7 @@ class PrinterInheritanceGraph(AbstractPrinter): Args: filename(string) """ - if filename == "" or filename == ".": + if filename in ("", "."): filename = "inheritance-graph.dot" if not filename.endswith(".dot"): filename += ".inheritance-graph.dot"