Skip to content

Commit

Permalink
Merge branch 'main' into dalia/mlirgui
Browse files Browse the repository at this point in the history
  • Loading branch information
dshaaban01 authored Dec 22, 2024
2 parents 78df60d + 42681e6 commit 5d64995
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions xdsl/interactive/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -372,7 +372,6 @@ def update_root_of_passes_tree(self) -> None:
def get_pass_arguments(
self,
selected_pass_value: type[ModulePass],
selected_pass_spec: PipelinePassSpec | None,
root_to_child_pass_list: tuple[tuple[type[ModulePass], PipelinePassSpec], ...],
) -> None:
"""
Expand Down Expand Up @@ -456,9 +455,7 @@ def update_pass_pipeline(

# if selected_pass_value has arguments, call get_arguments_function to push screen for user input
if fields(selected_pass_value) and selected_pass_spec is None:
self.get_pass_arguments(
selected_pass_value, selected_pass_spec, root_to_child_pass_list
)
self.get_pass_arguments(selected_pass_value, root_to_child_pass_list)
else:
# if selected_pass_value contains no arguments add the selected pass to pass_pipeline
if selected_pass_spec is None:
Expand Down

0 comments on commit 5d64995

Please sign in to comment.