Skip to content

Commit 67760ef

Browse files
build: merge string literals
1 parent 6348dce commit 67760ef

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

python/bin/repl_stub.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,7 @@ def complete(self, text, state):
6262
elif "GNU readline" in readline.__doc__: # type: ignore
6363
readline.parse_and_bind("tab: complete")
6464
else:
65-
print(
66-
"Could not enable tab completion: " "unable to determine readline backend"
67-
)
65+
print("Could not enable tab completion: unable to determine readline backend")
6866
except ImportError:
6967
print(
7068
"Could not enable tab completion: "

0 commit comments

Comments
 (0)