Merge pull request #3376 from InspectorCaracal/patch-17

fix _get_cmdset return type
This commit is contained in:
Griatch 2024-01-08 19:50:56 +01:00 committed by GitHub
commit 0d8db621c6
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 = []