# -*- 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