1 2 3 4 5 6 7 8 9 10 11 12 13
# -*- coding: utf-8 -*- import os class storageBase: def notifyChange(self, sender): abstract def getConfigDir(self): dir = os.path.expanduser('~/.todolist/') if not os.path.exists(dir): os.makedirs(dir) return dir