Skip to content

Commit

Permalink
Update dos_detector.py
Browse files Browse the repository at this point in the history
  • Loading branch information
vijayarawat19 committed Apr 9, 2024
1 parent e3c1971 commit 17cd25c
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion slither/detectors/functions/dos_detector.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
from typing import List, Optional
from slither.core.cfg.node import NodeType, Node
from slither.detectors.detector import AbstractDetector, DetectorClassification
from slither.detectors.abstract_detector import (
AbstractDetector,
DetectorClassification,
)
from slither.core.declarations import Contract
from slither.utils.output import Output

Expand Down Expand Up @@ -64,3 +67,4 @@ def _detect(self) -> List[Output]:
results.append(res)
return results


0 comments on commit 17cd25c

Please sign in to comment.