Skip to content

Commit

Permalink
simplify condition
Browse files Browse the repository at this point in the history
Signed-off-by: Achal Shah <achals@gmail.com>
  • Loading branch information
achals committed Jul 7, 2022
1 parent d3e6533 commit 95c548d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sdk/python/feast/infra/offline_stores/bigquery.py
Original file line number Diff line number Diff line change
Expand Up @@ -491,7 +491,7 @@ def metadata(self) -> Optional[RetrievalMetadata]:
return self._metadata

def supports_remote_storage_export(self) -> bool:
return self._gcs_path
return self._gcs_path is not None

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

0 comments on commit 95c548d

Please sign in to comment.