mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
changed conversion
This commit is contained in:
parent
17d742a143
commit
c99b22a669
1 changed files with 1 additions and 2 deletions
|
|
@ -1,6 +1,5 @@
|
|||
import re
|
||||
import copy
|
||||
import collections
|
||||
from .lib import (
|
||||
NOT_SET,
|
||||
OverrideState
|
||||
|
|
@ -96,7 +95,7 @@ class DictMutableKeysEntity(EndpointEntity):
|
|||
|
||||
def _convert_to_valid_type(self, value):
|
||||
try:
|
||||
return collections.OrderedDict(value)
|
||||
return dict(value)
|
||||
except Exception:
|
||||
pass
|
||||
return super(DictMutableKeysEntity, self)._convert_to_valid_type(value)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue