Skip to content

Commit

Permalink
linting
Browse files Browse the repository at this point in the history
  • Loading branch information
jubeaz committed May 26, 2024
1 parent 9c96362 commit 0ea667a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions arsenal/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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__))
Expand Down

0 comments on commit 0ea667a

Please sign in to comment.