Make KeyDict still inherit from dict
This commit is contained in:
parent
ec05954420
commit
878a67e501
1 changed files with 1 additions and 1 deletions
|
@ -1934,7 +1934,7 @@ class Core:
|
|||
self.refresh_window()
|
||||
|
||||
|
||||
class KeyDict(Dict[str, Callable]):
|
||||
class KeyDict(dict):
|
||||
"""
|
||||
A dict, with a wrapper for get() that will return a custom value
|
||||
if the key starts with _exc_
|
||||
|
|
Loading…
Reference in a new issue