This commit is contained in:
itamar 2026-04-10 16:39:57 +02:00
commit 1ac693fdc2
Signed by: itamar
SSH key fingerprint: SHA256:Dv6UzB9hN8q8FUgMR/7X3DTFpE/vSB2m05+KNnxM4B0
9 changed files with 670 additions and 0 deletions

6
ParserError.py Normal file
View file

@ -0,0 +1,6 @@
import ast
class ParserError(Exception):
def __init__(self, *args: object) -> None:
super().__init__(*args)