:return: Name of current module (reflects the directory in which this plugin is stored)
(self)
| 103 | return os.path.join(os.path.dirname(sys.modules[self.get_module_name()].__file__), *paths) |
| 104 | |
| 105 | def get_name(self): |
| 106 | """ |
| 107 | :return: Name of current module (reflects the directory in which this plugin is stored) |
| 108 | """ |
| 109 | return self.name |
| 110 | |
| 111 | def get_user_data_store(self, user): |
| 112 | """ |
no outgoing calls
no test coverage detected