184 indentDifference = ( |
184 indentDifference = ( |
185 last - lead_spaces |
185 last - lead_spaces |
186 if (lead_spaces % indent_width != 0 or |
186 if (lead_spaces % indent_width != 0 or |
187 lead_spaces == 0 or |
187 lead_spaces == 0 or |
188 self.lastIndented != line) else |
188 self.lastIndented != line) else |
189 -indent_width |
189 -indent_width # __IGNORE_WARNING_W503__ |
190 ) |
190 ) |
191 |
191 |
192 return indentDifference |
192 return indentDifference |
193 |
193 |
194 def autoCompletionWordSeparators(self): |
194 def autoCompletionWordSeparators(self): |