File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
tests/integrations/jupyter Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 6565 "agate==1.7.1" ,
6666 f"apache-airflow=={ os .environ .get ('AIRFLOW_VERSION' , '2.9.1' )} " ,
6767 "opentelemetry-proto==1.27.0" , # pip was having trouble resolving this transitive dependency of airflow
68- "beautifulsoup4==4.12.3 " ,
68+ "beautifulsoup4" ,
6969 "clickhouse-connect" ,
7070 "cryptography" ,
7171 "custom-materializations" ,
Original file line number Diff line number Diff line change @@ -77,9 +77,9 @@ def convert_all_html_output_to_tags():
7777 def _convert_html_to_tags (html : str ) -> t .List [str ]:
7878 # BS4 automatically adds html and body tags so we remove those since they are not actually part of the output
7979 return [
80- tag .name
80+ tag .name # type: ignore
8181 for tag in BeautifulSoup (html , "html" ).find_all ()
82- if tag .name not in {"html" , "body" }
82+ if tag .name not in {"html" , "body" } # type: ignore
8383 ]
8484
8585 def _convert (output : CapturedIO ) -> t .List [t .List [str ]]:
You can’t perform that action at this time.
0 commit comments