diff options
author | mathieui <mathieui@mathieui.net> | 2018-07-23 21:30:49 +0200 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2018-07-23 21:30:49 +0200 |
commit | 878a67e501f35e700cd03c7d2f60376b61898b63 (patch) | |
tree | d1634761ab2192ea6425649b5ff86277c87c117a | |
parent | ec0595442035148486b0fd307f2592923a865425 (diff) | |
download | poezio-878a67e501f35e700cd03c7d2f60376b61898b63.tar.gz poezio-878a67e501f35e700cd03c7d2f60376b61898b63.tar.bz2 poezio-878a67e501f35e700cd03c7d2f60376b61898b63.tar.xz poezio-878a67e501f35e700cd03c7d2f60376b61898b63.zip |
Make KeyDict still inherit from dict
-rw-r--r-- | poezio/core/core.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/poezio/core/core.py b/poezio/core/core.py index 4d62da93..ee1025e8 100644 --- a/poezio/core/core.py +++ b/poezio/core/core.py @@ -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_ |