@@ -225,12 +225,12 @@ class TestMechanismType(GeneratedsSuper):
225
225
reference to the ID of a Test Mechanism specified elsewhere."""
226
226
subclass = None
227
227
superclass = None
228
- def __init__ (self , idref = None , id = None , Efficacy = None , Producer = None , xsi_type = None ):
228
+ def __init__ (self , idref = None , id = None , Efficacy = None , Producer = None ):
229
229
self .idref = _cast (None , idref )
230
230
self .id = _cast (None , id )
231
231
self .Efficacy = Efficacy
232
232
self .Producer = Producer
233
- self .xsi_type = xsi_type
233
+ # self.xsi_type = xsi_type
234
234
def factory (* args_ , ** kwargs_ ):
235
235
if TestMechanismType .subclass :
236
236
return TestMechanismType .subclass (* args_ , ** kwargs_ )
@@ -278,9 +278,9 @@ def exportAttributes(self, lwrite, level, already_processed, namespace_='indicat
278
278
if self .id is not None and 'id' not in already_processed :
279
279
already_processed .add ('id' )
280
280
lwrite (' id=%s' % (quote_attrib (self .id ), ))
281
- if self .xsi_type is not None and 'xsi:type' not in already_processed :
282
- already_processed .add ('xsi:type' )
283
- lwrite (' xsi:type="%s"' % self .xsi_type )
281
+ # if self.xsi_type is not None and 'xsi:type' not in already_processed:
282
+ # already_processed.add('xsi:type')
283
+ # lwrite(' xsi:type="%s"' % self.xsi_type)
284
284
285
285
def exportChildren (self , lwrite , level , nsmap , namespace_ = XML_NS , name_ = 'TestMechanismType' , fromsubclass_ = False , pretty_print = True ):
286
286
if pretty_print :
0 commit comments