From 1770d0d5553fc27bb5cbd0f820428dde5aa09e70 Mon Sep 17 00:00:00 2001 From: Dave Date: Tue, 21 Nov 2023 17:25:41 +0100 Subject: [PATCH] fix linting --- tests/helpers/streamlit_tests/test_streamlit_show_resources.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/helpers/streamlit_tests/test_streamlit_show_resources.py b/tests/helpers/streamlit_tests/test_streamlit_show_resources.py index fcf232ea76..e31a5d5cbb 100644 --- a/tests/helpers/streamlit_tests/test_streamlit_show_resources.py +++ b/tests/helpers/streamlit_tests/test_streamlit_show_resources.py @@ -57,7 +57,7 @@ def test_multiple_resources_pipeline(): ) load_info = pipeline.run([source1(10), source2(20)]) - source1_schema = load_info.pipeline.schemas.get("source1") # type: ignore[attr-defined] + source1_schema = load_info.pipeline.schemas.get("source1") assert load_info.pipeline.schema_names == ["source2", "source1"] # type: ignore[attr-defined]