fix empty character

This commit is contained in:
Maxim Slipenko 2021-09-20 12:21:51 +03:00
parent 71a916c922
commit 4875005153

View File

@ -32,7 +32,9 @@ def main():
test_data = []
for test in args.tests:
test = test.replace(args.empty_character, 'λ')
if args.empty_character:
test = test.replace(args.empty_character, 'λ')
tm = Emulator(program, test)