Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fix: annotate only the method signature
Signed-off-by: Ryan Beauchamp <ryan.beauchamp@ezcater.com>
  • Loading branch information
Ryan Beauchamp committed Dec 16, 2022
commit c04e38c8e2ca7e4aafcaf015af77952aed4b68a4
4 changes: 1 addition & 3 deletions sdk/python/feast/infra/offline_stores/snowflake.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
from __future__ import annotations

import contextlib
import os
import uuid
Expand Down Expand Up @@ -461,7 +459,7 @@ def to_sql(self) -> str:
with self._query_generator() as query:
return query

def to_spark_df(self, spark_session: SparkSession) -> DataFrame:
def to_spark_df(self, spark_session: "SparkSession") -> "DataFrame":
"""
Method to convert snowflake query results to pyspark data frame.

Expand Down