(plugin_file_path)
| 54 | |
| 55 | |
| 56 | def _get_plugin_module(plugin_file_path): |
| 57 | plugin_module = os.path.basename(plugin_file_path) |
| 58 | if plugin_module.endswith(PYTHON_EXTENSION): |
| 59 | plugin_module = plugin_module[: plugin_module.rfind(".py")] |
| 60 | else: |
| 61 | plugin_module = None |
| 62 | return plugin_module |
| 63 | |
| 64 | |
| 65 | def _get_classes_in_module(module): |
no outgoing calls
no test coverage detected