Remove extra newline

This commit is contained in:
Brad Warren
2016-08-16 15:36:41 -07:00
parent 9c168017ae
commit 0b0eca323c
@@ -292,7 +292,6 @@ class UnspacedList(list):
# Normalize indexes like list[-1] etc, and save the result
if idx < 0:
idx = len(self) + idx
if not 0 <= idx < len(self):
raise IndexError("list index out of range")
idx0 = idx