import vim import abc class Enviroment(abc.ABC): @property @abc.abstractmethod def plugin_root_dir(self): """ Return absolute path to directory one level above of directory containing python scripts. """ @property @abc.abstractmethod def python_style(self): """ Returns string containing docstring style: google, numpy, etc. The style has to have corresponding template of name