From 697616edae02778cc041366b16ed24f1a214de42 Mon Sep 17 00:00:00 2001 From: Boyan-MILANOV Date: Mon, 14 Mar 2022 17:49:14 +0100 Subject: [PATCH] More linting --- slither/detectors/naming_convention/naming_convention.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/slither/detectors/naming_convention/naming_convention.py b/slither/detectors/naming_convention/naming_convention.py index 7e750e81c..63c419fd7 100644 --- a/slither/detectors/naming_convention/naming_convention.py +++ b/slither/detectors/naming_convention/naming_convention.py @@ -94,7 +94,8 @@ Solidity defines a [naming convention](https://solidity.readthedocs.io/en/v0.4.2 in [ "internal", "private", - ] and self.is_mixed_case_with_underscore(func.name) + ] + and self.is_mixed_case_with_underscore(func.name) ): continue if func.name.startswith("echidna_") or func.name.startswith("crytic_"):