Skip to content
Snippets Groups Projects
Commit dac2d69c authored by Ralf Habacker's avatar Ralf Habacker
Browse files

Add 'list' to python code generator list of default data types.

This type is required by python import, which uses the generator
data type list too.

CCBUG:158739
parent 2d452ec8
No related branches found
No related tags found
No related merge requests found
......@@ -453,6 +453,7 @@ QStringList PythonWriter::defaultDatatypes()
l.append(QLatin1String("tuple"));
l.append(QLatin1String("float"));
l.append(QLatin1String("int"));
l.append(QLatin1String("list"));
l.append(QLatin1String("long"));
l.append(QLatin1String("dict"));
l.append(QLatin1String("object"));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment