From 0ea667ae8fd31596df7edb4bf1b33c0480099471 Mon Sep 17 00:00:00 2001 From: jubeaz Date: Sun, 26 May 2024 03:51:04 +0200 Subject: [PATCH] linting --- arsenal/app.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/arsenal/app.py b/arsenal/app.py index adbf9f2..86ce6d4 100644 --- a/arsenal/app.py +++ b/arsenal/app.py @@ -22,7 +22,8 @@ def __call__(self, parser, namespace, values, option_string=None): setattr(namespace, self.dest, values) class App: - + + tmux_server = None tmux_session = None @@ -57,7 +58,7 @@ def get_args(self): group_out.add_argument('-e', '--exec', action='store_true', help='Execute cmd') group_out.add_argument('-t', '--tmux', action='store_true', help='Send command to tmux panel') group_out.add_argument("-z", "--tmux-new", action=PanePathAction, metavar="PANE_PATH", - help="Send command to tmux pane", dest="tmux_new") + help="Send command to tmux pane", dest="tmux_new") group_out.add_argument('-c', '--check', action='store_true', help='Check the existing commands') group_out.add_argument('-f', '--prefix', action='store_true', help='command prefix') parser.add_argument('-V', '--version', action='version', version='%(prog)s (version {})'.format(__version__))