Skip to content

Commit

Permalink
Fix type hint error
Browse files Browse the repository at this point in the history
  • Loading branch information
fjclark committed Apr 15, 2024
1 parent 003ae8b commit a709277
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion maize/steps/exs/biosimspace/_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ def _dump_data(self) -> None:
else:
shutil.copy(file, dump_dir)

def _get_executable(self) -> str:
def _get_executable(self) -> str | None:
"""Get the full path to the executable."""
if self.required_callables:
return shutil.which(self.required_callables[0])
Expand Down

0 comments on commit a709277

Please sign in to comment.