[varLib.interpolatable] Fix mix of space & tab

This commit is contained in:
Behdad Esfahbod 2022-07-28 14:01:15 -06:00
parent 5d9677038b
commit aa509b6df2

View File

@ -16,12 +16,12 @@ import itertools
import sys
def _rot_list(l, k):
"""Rotate list by k items forward. Ie. item at position 0 will be
at position k in returned list. Negative k is allowed."""
n = len(l)
k %= n
if not k: return l
return l[n-k:] + l[:n-k]
"""Rotate list by k items forward. Ie. item at position 0 will be
at position k in returned list. Negative k is allowed."""
n = len(l)
k %= n
if not k: return l
return l[n-k:] + l[:n-k]
class PerContourPen(BasePen):