diff --git a/coder.py b/coder.py index 4c9581ba6..44004cb14 100755 --- a/coder.py +++ b/coder.py @@ -155,12 +155,11 @@ class Coder: show = ". " else: show = "> " - line = prompt( - show, - completer=completer_instance, - history=FileHistory(self.history_file), - style="fg:green", - ) + line = prompt( + show, + completer=completer_instance, + history=FileHistory(self.history_file), + ) except EOFError: return if line.strip() == "{" and not multiline_input: @@ -494,4 +493,4 @@ if __name__ == "__main__": from main import main status = main() - sys.exit(status) \ No newline at end of file + sys.exit(status)