Skip to content

Commit

Permalink
Downgrade Lark slightly
Browse files Browse the repository at this point in the history
  • Loading branch information
rix0rrr committed Jan 22, 2025
1 parent 65bee5e commit 4c83417
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
3 changes: 3 additions & 0 deletions exceptions.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,9 @@ def error_location(self):
return [self.arguments['line_number']]
return None

def __str__(self):
return f'{self.error_code} {repr(self.arguments)}'


class WarningException(HedyException):
"""Fixed That For You warning/exception.
Expand Down
4 changes: 3 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
Flask==3.0.2
Werkzeug==3.0.6
lark==1.2.2
# We cannot go higher than this, because starting 1.2.1+
# we parse "100" as text instead of a number.
lark==1.1.9
gunicorn==22.0.0
flask-compress==1.4.0
requests==2.32.0
Expand Down

0 comments on commit 4c83417

Please sign in to comment.