We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents abaa5d6 + 62ab21f commit 2ab4189Copy full SHA for 2ab4189
CircuitPython_Zorque_Text_Game_openai/code.py
@@ -139,9 +139,6 @@ def on_last_line(self):
139
140
def refresh(self):
141
text = '\n'.join(self.lines[self.line_offset : self.line_offset + max_lines])
142
- # Work around https://github.com/adafruit/Adafruit_CircuitPython_Display_Text/issues/183
143
- while '\n\n' in text:
144
- text = text.replace('\n\n', '\n \n')
145
terminal.text = text
146
board.DISPLAY.refresh()
147
wrapped_text_display = WrappedTextDisplay()
0 commit comments