fix EDict to dict mapping in helpers.py (#3599)

This commit is contained in:
Javier Peletier 2022-06-30 11:24:24 +02:00 committed by GitHub
parent f82b46c16b
commit 435f972357
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -296,7 +296,7 @@ _TYPE_OVERLOADS = {
int: type("EInt", (int,), {}),
float: type("EFloat", (float,), {}),
str: type("EStr", (str,), {}),
dict: type("EDict", (str,), {}),
dict: type("EDict", (dict,), {}),
list: type("EList", (list,), {}),
}