We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
qgis
Learn more about funding links in repositories.
Report abuse
There was an error while loading. Please reload this page.
1 parent 2ad27b1 commit ecb7b3aCopy full SHA for ecb7b3a
python/plugins/processing/core/parameters.py
@@ -120,7 +120,9 @@ def typeName(self):
120
return self.__class__.__name__.replace('Parameter', '').lower()
121
122
def todict(self):
123
- return self.__dict__
+ o = self.__dict__
124
+ del o['metadata']
125
+ return o
126
127
def tr(self, string, context=''):
128
if context == '':
0 commit comments