From 4474bc2c72977e4bed854cb0e1fd043893c3f5d8 Mon Sep 17 00:00:00 2001 From: bart1e Date: Sun, 26 Feb 2023 18:51:13 +0100 Subject: [PATCH] WIKI URL fixed --- slither/detectors/functions/cyclomatic_complexity.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/slither/detectors/functions/cyclomatic_complexity.py b/slither/detectors/functions/cyclomatic_complexity.py index f03cf61b8..16dc63012 100644 --- a/slither/detectors/functions/cyclomatic_complexity.py +++ b/slither/detectors/functions/cyclomatic_complexity.py @@ -22,7 +22,7 @@ class CyclomaticComplexity(AbstractDetector): IMPACT = DetectorClassification.INFORMATIONAL CONFIDENCE = DetectorClassification.HIGH - WIKI = 'https://github.com/crytic/slither/wiki/Detector-Documentation#cyclomatic-complexity"' + WIKI = 'https://github.com/crytic/slither/wiki/Detector-Documentation#cyclomatic-complexity' WIKI_TITLE = "Cyclomatic complexity" WIKI_DESCRIPTION = "Detects functions with high (> 11) cyclomatic complexity."