Skip to content

Commit

Permalink
black
Browse files Browse the repository at this point in the history
  • Loading branch information
stevebachmeier committed Nov 3, 2023
1 parent a74c658 commit 120a874
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/linker/configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit 120a874

Please sign in to comment.