Removed impossible error condition

This commit is contained in:
Salvador E. Tropea 2020-05-26 14:55:04 -03:00
parent 6c5c33be12
commit ee7de07ee4
1 changed files with 0 additions and 4 deletions

View File

@ -458,10 +458,6 @@ class OutputOptions(object):
raise KiPlotConfigurationError("Output options not implemented for "+otype)
def validate(self):
if self.type_options is None and self.type != self.IBOM:
return ["No type specific options found"]
return self.type_options.validate()