Fixing list index starting at 1

This commit is contained in:
Anthony Debucquoy 2025-03-20 21:36:38 +01:00
parent 312f4cd125
commit ca495dfd9e
Signed by: tonitch
GPG Key ID: A78D6421F083D42E

2
spf.py
View File

@ -111,7 +111,7 @@ class SPFInterpreter(lark.visitors.Interpreter):
def list_get(self, el):
(left, right) = self.visit_children(el)
return left[right]
return left[right-1]
def expression(self, el):