We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 871eb2f commit 857eec6Copy full SHA for 857eec6
cli/cloe_launch/exec.py
@@ -76,7 +76,7 @@ def teardown(self) -> None:
76
77
def _find_plugin_setups(file: Path) -> List[Type[PluginSetup]]:
78
"""Open a Python module and find all PluginSetups."""
79
- name = os.path.splitext(file)[0]
+ name = str(file.with_suffix(""))
80
spec = importlib.util.spec_from_file_location(name, file)
81
if spec is None:
82
return []
0 commit comments