Skip to content

Commit 4cde91c

Browse files
committed
Fix flake8 issue
1 parent 0729e0b commit 4cde91c

File tree

1 file changed

+12
-9
lines changed

1 file changed

+12
-9
lines changed

tmon/cli.py

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -31,16 +31,19 @@ def parse_args():
3131
SIGINT (Ctrl-C).
3232
For full documentation check the repo: https://github.com/gmagno/tmon
3333
""")
34-
epilog = textwrap.dedent("""
35-
/##
36-
| ##
37-
/###### /######/#### /###### /#######
38-
|_ ##_/ | ##_ ##_ ## /##__ ##| ##__ ##
39-
| ## | ## \ ## \ ##| ## \ ##| ## \ ##
40-
| ## /##| ## | ## | ##| ## | ##| ## | ##
41-
| ####/| ## | ## | ##| ######/| ## | ##
42-
\___/ |__/ |__/ |__/ \______/ |__/ |__/
4334

35+
epilog = r"""
36+
/##
37+
| ##
38+
/###### /######/#### /###### /#######
39+
|_ ##_/ | ##_ ##_ ## /##__ ##| ##__ ##
40+
| ## | ## \ ## \ ##| ## \ ##| ## \ ##
41+
| ## /##| ## | ## | ##| ## | ##| ## | ##
42+
| ####/| ## | ## | ##| ######/| ## | ##
43+
\___/ |__/ |__/ |__/ \______/ |__/ |__/
44+
"""
45+
46+
epilog += textwrap.dedent("""
4447
return:
4548
%(prog)s returns when the child program exits, stops, or is
4649
terminated by a signal. The return value of %(prog)s is the return

0 commit comments

Comments
 (0)