diff -r ccf59c1f0b45 -r c1e5b9f19483 controls/DebugVariablePanel/DebugVariableItem.py --- a/controls/DebugVariablePanel/DebugVariableItem.py Thu Aug 17 16:26:32 2017 +0300 +++ b/controls/DebugVariablePanel/DebugVariableItem.py Thu Aug 17 17:25:17 2017 +0300 @@ -160,8 +160,7 @@ @param index: Variable value index @return: Variable data type """ - if (self.VariableType in ["STRING", "WSTRING"] and - index < len(self.RawData)): + if self.VariableType in ["STRING", "WSTRING"] and index < len(self.RawData): return self.RawData[index][0] return "" @@ -309,10 +308,8 @@ @param value: New value """ # Remove quote and double quote surrounding string value to get raw value - if (self.VariableType == "STRING" and - value.startswith("'") and value.endswith("'") or - self.VariableType == "WSTRING" and - value.startswith('"') and value.endswith('"')): + if self.VariableType == "STRING" and value.startswith("'") and value.endswith("'") or \ + self.VariableType == "WSTRING" and value.startswith('"') and value.endswith('"'): value = value[1:-1] # Store variable value @@ -376,8 +373,8 @@ idx = numpy.argmin(abs(ticks - tick)) # Adjust data index according to constraint - if (adjust < 0 and ticks[idx] > tick and idx > 0 or - adjust > 0 and ticks[idx] < tick and idx < len(ticks)): + if adjust < 0 and ticks[idx] > tick and idx > 0 or \ + adjust > 0 and ticks[idx] < tick and idx < len(ticks): idx += adjust return idx