I am a fresher in python.I had python 2.7 and 3.4.When I compile python 3.4 I get the following error but not in 2.7
File "C:\pyprojects\focus\site\focus2\flow.py", line 24, in _wrapper
cls._meta = type("Meta", (), BaseFlowTile.Meta.__dict__)
TypeError: type() argument 3 must be dict, not mappingproxy
If I just use dict instead __dict__
then I get the following error
AttributeError: type object 'Meta' has no attribute 'dict'
Any help is highly appreciated.