Skip to content

Commit 3bf2818

Browse files
various pep8/pyflakes fixes
1 parent b91fb1e commit 3bf2818

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

testing/test_basic.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
# CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
1818
# CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
1919
import pytest
20-
from .infrastructure import read_spec, EA
20+
from .infrastructure import read_spec
2121

2222

2323
def test_basic():

testing/test_keymap.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ def test_compile_keymap():
99
b'bc': 'test2',
1010
})
1111

12-
assert k == {b'a': 'test', b'b': { b'c': 'test2'}}
12+
assert k == {b'a': 'test', b'b': {b'c': 'test2'}}

testing/test_wishes.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,15 @@
1717
# CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
1818
# CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
1919

20-
from .infrastructure import EA, read_spec
20+
from .infrastructure import read_spec
2121

2222
# this test case should contain as-verbatim-as-possible versions of
2323
# (applicable) feature requests
2424

2525

2626
def test_quoted_insert_repeat():
2727
read_spec([(('digit-arg', '3'), ['']),
28-
( 'quoted-insert', ['']),
28+
(('quoted-insert',), ['']),
2929
(('self-insert', '\033'), ['^[^[^[']),
30-
( 'accept', None)])
30+
(('accept',), None)])
3131

0 commit comments

Comments
 (0)