Skip to content

Commit

Permalink
ci(pre-commit): autofix
Browse files Browse the repository at this point in the history
  • Loading branch information
pre-commit-ci[bot] committed Mar 19, 2024
1 parent 93b2949 commit e3e7d98
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -218,9 +218,9 @@ def check_argument_status(self, text=None):

def on_click(self):
args_dict: Dict[str, str] = {
arg_name: args_widget.text()
if hasattr(args_widget, "text")
else args_widget.currentText()
arg_name: (
args_widget.text() if hasattr(args_widget, "text") else args_widget.currentText()
)
for arg_name, args_widget in self.arguments_widgets_dict.items()
}

Expand Down

0 comments on commit e3e7d98

Please sign in to comment.