From 0ad21fe3575b07b38589b2f90ce93555d7ef2f0a Mon Sep 17 00:00:00 2001 From: Khaleel Al-Adhami Date: Thu, 15 Aug 2024 16:23:46 -0700 Subject: [PATCH] add type ignore --- tests/components/core/test_html.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/components/core/test_html.py b/tests/components/core/test_html.py index 1fa2bcf75..4847e1d5a 100644 --- a/tests/components/core/test_html.py +++ b/tests/components/core/test_html.py @@ -32,10 +32,10 @@ def test_html_fstring_create(): html = Html.create(f"

Hello {TestState.myvar}!

") assert ( - str(html.dangerouslySetInnerHTML) + str(html.dangerouslySetInnerHTML) # type: ignore == f'({{ ["__html"] : ("

Hello "+{str(TestState.myvar)}+"!

") }})' ) assert ( str(html) - == f'
' + == f'
' # type: ignore )