Coverage for creepo/rest.py: 100%

5 statements  

« prev     ^ index     » next       coverage.py v7.4.0, created at 2024-01-03 18:52 -0500

1"""The creepo class""" 

2import cherrypy 

3 

4 

5class Creepo: # pylint: disable=too-few-public-methods 

6 """The Creepo class""" 

7 @cherrypy.expose 

8 def hello(self): 

9 """A simple hello method""" 

10 return "Hello, World!"