From 97df27bac189502474ccfb8d3639921a511f189b Mon Sep 17 00:00:00 2001 From: Robin Linacre Date: Mon, 30 Sep 2024 11:31:51 +0100 Subject: [PATCH] ignore both ruff and mypy --- splink/internals/splink_dataframe.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/splink/internals/splink_dataframe.py b/splink/internals/splink_dataframe.py index b3b974f27..624fa0c56 100644 --- a/splink/internals/splink_dataframe.py +++ b/splink/internals/splink_dataframe.py @@ -154,7 +154,7 @@ def as_duckdbpyrelation(self, limit: Optional[int] = None) -> DuckDBPyRelation: ) # Spark not guaranteed to be available so return type is not imported - def as_spark_dataframe(self) -> "SparkDataFrame": # noqa: F821 + def as_spark_dataframe(self) -> "SparkDataFrame": # type: ignore # noqa: F821 """Return the dataframe as a spark dataframe. Only available when using the Spark backend.