linspector-old/lib/parsers/shell.py

10 lines
146 B
Python
Raw Normal View History

from parser import Parser
class ShellParser(Parser):
def __init__(self):
2013-06-19 04:47:28 +02:00
pass
def create(kwargs):
return ShellParser(**kwargs)