mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 21:32:49 +00:00
fixed signature for init on callbacks
also removed passing display to base class which already handles this
This commit is contained in:
@@ -36,8 +36,8 @@ class CallbackModule(CallbackBase):
|
||||
CALLBACK_NAME = 'tree'
|
||||
CALLBACK_NEEDS_WHITELIST = True
|
||||
|
||||
def __init__(self, display):
|
||||
super(CallbackModule, self).__init__(display)
|
||||
def __init__(self):
|
||||
super(CallbackModule, self).__init__()
|
||||
|
||||
self.tree = TREE_DIR
|
||||
if not self.tree:
|
||||
|
||||
Reference in New Issue
Block a user