Skip to content

Commit

Permalink
Fix type correctness for Python in delta debugging factory
Browse files Browse the repository at this point in the history
  • Loading branch information
Perun CaseStudies authored and Perun CaseStudies committed Nov 4, 2024
1 parent 8752b09 commit b44537a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion perun/deltadebugging/factory.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,8 @@ def run_command_with_input(executable: Executable, complement: str, **kwargs: An

def read_input(is_fuzzing: bool, **kwargs: Any) -> str:
if is_fuzzing:
input_file = kwargs.get("mutation").path
mutation: Mutation = kwargs.get("mutation")
input_file = mutation.path
else:
input_file = kwargs.get("input_sample")
input_path = Path(input_file)
Expand Down

0 comments on commit b44537a

Please sign in to comment.