Skip to content

Commit 95c548d

Browse files
committed
simplify condition
Signed-off-by: Achal Shah <[email protected]>
1 parent d3e6533 commit 95c548d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

sdk/python/feast/infra/offline_stores/bigquery.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -491,7 +491,7 @@ def metadata(self) -> Optional[RetrievalMetadata]:
491491
return self._metadata
492492

493493
def supports_remote_storage_export(self) -> bool:
494-
return self._gcs_path
494+
return self._gcs_path is not None
495495

496496
def to_remote_storage(self) -> List[str]:
497497
if not self._gcs_path:

0 commit comments

Comments
 (0)