Gets the path of the directory of the plugin, optionally chained with paths :return: path
(self, *paths)
| 96 | |
| 97 | |
| 98 | def get_path(self, *paths): |
| 99 | """ |
| 100 | Gets the path of the directory of the plugin, optionally chained with paths |
| 101 | :return: path |
| 102 | """ |
| 103 | return os.path.join(os.path.dirname(sys.modules[self.get_module_name()].__file__), *paths) |
| 104 | |
| 105 | def get_name(self): |
| 106 | """ |