Skip to content

Commit

Permalink
cc: Work around PyLint non-parent-init-called false positive
Browse files Browse the repository at this point in the history
  • Loading branch information
mthuurne committed Apr 22, 2020
1 parent 647cd23 commit 057dab4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/softfab/taskgroup.py
Original file line number Diff line number Diff line change
Expand Up @@ -427,7 +427,7 @@ def __init__(self,
tasks: Iterable[TaskT],
localAt: Optional[str]
):
TaskGroup.__init__(self, parent, tasks)
super().__init__(parent, tasks)
self.__name: Optional[str] = None
self.__runnerId: Optional[str] = None
self.__runners: Optional[AbstractSet[str]] = None
Expand Down

0 comments on commit 057dab4

Please sign in to comment.