diff --git a/src/linker/configuration.py b/src/linker/configuration.py index 5fd9597c..01b6e435 100644 --- a/src/linker/configuration.py +++ b/src/linker/configuration.py @@ -38,10 +38,7 @@ def get_implementation_directory(self, step_name: str) -> Path: # TODO: move this into proper config validator implementation = self.pipeline["steps"][step_name]["implementation"] implementation_dir = ( - Path(os.path.realpath(__file__)).parent - / "steps" - / step_name - / "implementations" + Path(os.path.realpath(__file__)).parent / "steps" / step_name / "implementations" ) implementation_names = [ str(d.name) for d in implementation_dir.iterdir() if d.is_dir()