source file: p10/commands/genericcommand.py
file stats: 6 lines, 5 executed: 83.3% covered
   1. #!/usr/bin/env python
   2. 
   3. class genericcommand:
   4. 
   5.     _state = None
   6. 
   7.     def __init__(self, state):
   8.         self._state = state
   9. 
  10.     def handle(self, origin, line):
  11.         pass