From 37cd8aa88ddad62cab3ac6ffdb0c9c3a8bcf45b4 Mon Sep 17 00:00:00 2001 From: Markus Unterwaditzer Date: Fri, 26 Dec 2014 01:23:38 +0100 Subject: [PATCH] Ignore error (not warning) --- tests/test_cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_cli.py b/tests/test_cli.py index 12e1947..3b03bb9 100644 --- a/tests/test_cli.py +++ b/tests/test_cli.py @@ -478,4 +478,4 @@ def test_parse_options(): # Yes, we want a very strong typecheck here, because we actually have # to differentiate between bool and int, and in Python 2, bool is a # subclass of int. - assert type(a[key]) is type(expected[key]) # noqa + assert type(a[key]) is type(expected[key]) # NOQA