diff --git a/pyaedt/edb_core/edb_data/terminals.py b/pyaedt/edb_core/edb_data/terminals.py index b7ea24de8e5..b44b0f12e0a 100644 --- a/pyaedt/edb_core/edb_data/terminals.py +++ b/pyaedt/edb_core/edb_data/terminals.py @@ -140,7 +140,7 @@ def boundary_type(self): @boundary_type.setter def boundary_type(self, value): - if not value in [i.name for i in BoundaryType]: + if not value in [i.name for i in BoundaryType]: # pragma : no cover self._pedb.logger.warning("Invalid Boundary Type={}".format(value)) if value == self._pedb.edb_api.cell.terminal.BoundaryType.kVoltageProbe.ToString(): temp = self._pedb.edb_api.cell.terminal.BoundaryType.kVoltageProbe