remove invalid None cmdset value

This commit is contained in:
InspectorCaracal 2024-05-20 14:25:21 -06:00 committed by GitHub
parent 3b84ec1b42
commit a38291f1b1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -350,7 +350,7 @@ def get_and_merge_cmdsets(
"""
# Gather cmdsets from location, objects in location or carried
try:
local_obj_cmdsets = [None]
local_obj_cmdsets = []
try:
location = obj.location
except Exception: