Add loop as a parameter in DumpMaster (#5790)
* Add loop as a parameter in DumpMaster * [autofix.ci] apply automated fixes Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
This commit is contained in:
parent
689ca0c1b5
commit
bbb5080e98
|
@ -12,10 +12,11 @@ class DumpMaster(master.Master):
|
|||
def __init__(
|
||||
self,
|
||||
options: options.Options,
|
||||
loop=None,
|
||||
with_termlog=True,
|
||||
with_dumper=True,
|
||||
) -> None:
|
||||
super().__init__(options)
|
||||
super().__init__(options, event_loop=loop)
|
||||
if with_termlog:
|
||||
self.addons.add(termlog.TermLog())
|
||||
self.addons.add(*addons.default_addons())
|
||||
|
|
Loading…
Reference in New Issue