fix _get_cmdset return type

This commit is contained in:
InspectorCaracal 2023-12-21 17:47:42 -07:00 committed by GitHub
parent 7a7416b084
commit 8a031192e0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -410,7 +410,7 @@ def get_and_merge_cmdsets(
try:
returnValue(obj.get_cmdsets(caller=caller, current=current))
except AttributeError:
returnValue(((None, None, None), []))
returnValue((CmdSet(), []))
local_obj_cmdsets = []