6 lines
No EOL
113 B
Python
6 lines
No EOL
113 B
Python
import ast
|
|
|
|
class ParserError(Exception):
|
|
|
|
def __init__(self, *args: object) -> None:
|
|
super().__init__(*args) |