Fixed a code formatting error. eric7

Tue, 24 Oct 2023 11:45:39 +0200

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Tue, 24 Oct 2023 11:45:39 +0200
branch
eric7
changeset 10255
a25f95af0a51
parent 10254
25e8e133e4f8
child 10256
1b728f26d1ae

Fixed a code formatting error.

src/eric7/MicroPython/MicroPythonReplWidget.py file | annotate | diff | comparison | revisions
--- a/src/eric7/MicroPython/MicroPythonReplWidget.py	Sun Oct 22 17:06:50 2023 +0200
+++ b/src/eric7/MicroPython/MicroPythonReplWidget.py	Tue Oct 24 11:45:39 2023 +0200
@@ -576,7 +576,7 @@
                     length = 2
                 else:
                     length = 1
-                txt = data[index:index + length].decode("utf8")
+                txt = data[index : index + length].decode("utf8")
                 index += length - 1  # one more is done at the end
                 self.insertPlainText(txt)
 

eric ide

mercurial