We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dc8b5b9 commit 6abc606Copy full SHA for 6abc606
bin/opi
@@ -24,7 +24,7 @@ class PreserveWhiteSpaceWrapRawTextHelpFormatter(argparse.RawTextHelpFormatter):
24
def _split_lines(self, text, width):
25
textRows = text.splitlines()
26
for idx,line in enumerate(textRows):
27
- search = re.search('\s*[\d\-]*\.?\s*', line)
+ search = re.search(r'\s*[\d\-]*\.?\s*', line)
28
if line.strip() == '':
29
textRows[idx] = ' '
30
elif search:
0 commit comments