Pylinting

This commit is contained in:
2023-02-07 17:48:11 +02:00
parent 9ae6f60325
commit 1c4dfb99a0
14 changed files with 1935 additions and 1783 deletions

View File

@ -1,10 +1,13 @@
from ziffers import *
""" Simple REPL for testing Ziffers notation """
# pylint: disable=locally-disabled, redefined-builtin, broad-except
from rich import print
from ziffers import parse_expression
EXIT_CONDITION = ("exit", "quit", "")
if __name__ == "__main__":
print(f"[purple]== ZIFFERS REPL ==[/purple]")
print("[purple]== ZIFFERS REPL ==[/purple]")
while True:
expr = input("> ")
if expr not in EXIT_CONDITION: