File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -261,6 +261,7 @@ def _init_detectors(self) -> None:
261261 from ..detectors .sanic import SanicDetector
262262 from ..detectors .tornado import TornadoDetector
263263 from ..detectors .starlette import StarletteDetector
264+ from ..detectors .cherrypy import CherryPyDetector
264265
265266
266267 # Add detectors based on filter or add all
@@ -273,7 +274,8 @@ def _init_detectors(self) -> None:
273274 'web2py' : Web2pyDetector ,
274275 'sanic' : SanicDetector ,
275276 'tornado' : TornadoDetector ,
276- 'starlette' : StarletteDetector
277+ 'starlette' : StarletteDetector ,
278+ 'cherrypy' : CherryPyDetector
277279 }
278280
279281 frameworks_filter = self .config .get ('frameworks' )
Original file line number Diff line number Diff line change @@ -4,3 +4,4 @@ http://localhost:8081
44http://localhost:8082
55http://localhost:8083
66http://localhost:8084
7+ http://localhost:8085
You can’t perform that action at this time.
0 commit comments