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.
1 parent 85cb6f5 commit 075927aCopy full SHA for 075927a
.pdk/pdk/__init__.py
@@ -47,7 +47,7 @@ def remove_nonprintables(text):
47
nps = "".join(sorted(set(chr(i) for i in range(128)) - set(string.printable)))
48
table = str.maketrans(nps, nps[0] * len(nps))
49
text = text.translate(table).replace(nps[0], "")
50
- return text.lstrip()
+ return text.strip()
51
52
53
class Command:
0 commit comments