Skip to content

Commit 16e5f68

Browse files
committed
flake8
1 parent 7138f9c commit 16e5f68

File tree

4 files changed

+4
-2
lines changed

4 files changed

+4
-2
lines changed

libtmux/common.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# -*- coding: utf-8 -*-
2+
# flake8: NOQA W605
23
"""Helper methods and mixins.
34
45
libtmux.common

libtmux/pane.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# -*- coding: utf-8 -*-
2+
# flake8: NOQA W605
23
"""Pythonization of the :ref:`tmux(1)` pane.
34
45
libtmux.pane

tests/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ def session(request, server):
5252
try:
5353
server.switch_client(session.get('session_id'))
5454
pass
55-
except exc.LibTmuxException as e:
55+
except exc.LibTmuxException:
5656
# server.attach_session(session.get('session_id'))
5757
pass
5858

tests/test_window.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ def test_split_window(session):
107107

108108

109109
def test_split_window_shell(session):
110-
"""Window.split_window() splits window, returns new Pane, vertical. Test shell command"""
110+
"""Window.split_window() splits window, returns new Pane, vertical."""
111111
window_name = 'test split window'
112112
cmd = 'sleep 1m'
113113
window = session.new_window(window_name=window_name, attach=True)

0 commit comments

Comments
 (0)