Skip to content

Commit

Permalink
style: reformat TaskListItem.py
Browse files Browse the repository at this point in the history
  • Loading branch information
leafspark committed Aug 23, 2024
1 parent ca9f9a4 commit 86d7bbb
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/TaskListItem.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@


class TaskListItem(QWidget):
def __init__(self, task_name, log_file, show_progress_bar=True, parent=None) -> None:
def __init__(
self, task_name, log_file, show_progress_bar=True, parent=None
) -> None:
super().__init__(parent)
self.task_name = task_name
self.log_file = log_file
Expand Down

0 comments on commit 86d7bbb

Please sign in to comment.