summaryrefslogtreecommitdiffstats
path: root/base/module.py
blob: 58a4bc3ac22f57311e7552f5f2fb62179cd4fb44 (plain)
1
2
3
4
5
6

class Module(object):
    """ Our parent class for all command modules """
    def close(self):
        raise NotImplementedError
    pass