Skip to content
This repository was archived by the owner on Mar 6, 2026. It is now read-only.

Commit ae2cb44

Browse files
committed
Updates _entity_type access
1 parent 9340c00 commit ae2cb44

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

google/cloud/bigquery/dataset.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -493,7 +493,7 @@ def entity_id(self) -> Optional[Union[Dict[str, Any], str]]:
493493
"""The entity_id of the entry."""
494494
return typing.cast(
495495
Optional[Union[Dict[str, Any], str]],
496-
self._properties.get(self._entity_type, None),
496+
self._properties.get(self.entity_type, None),
497497
)
498498

499499
def __eq__(self, other):

0 commit comments

Comments
 (0)