From e2d84997579496c2a1348ea5ca4d91d3b33e2482 Mon Sep 17 00:00:00 2001 From: Daniel Townsend Date: Sat, 23 Dec 2023 16:51:39 +0000 Subject: [PATCH] ignore error in `test_output.py` --- tests/table/test_output.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/table/test_output.py b/tests/table/test_output.py index 97256dfcb..8298396fd 100644 --- a/tests/table/test_output.py +++ b/tests/table/test_output.py @@ -101,6 +101,8 @@ def test_output_nested_with_first(self): .output(nested=True) .run_sync() ) + assert response is not None self.assertDictEqual( - response, {"name": "Pythonistas", "manager": {"name": "Guido"}} + response, # type: ignore + {"name": "Pythonistas", "manager": {"name": "Guido"}}, )