Skip to content
This repository was archived by the owner on Mar 6, 2026. It is now read-only.
Prev Previous commit
Next Next commit
fix linting in dataset.py
  • Loading branch information
drokeye authored Jun 25, 2025
commit adffcf563cd915de17d36f9b70b15c7df7e6abb3
3 changes: 2 additions & 1 deletion google/cloud/bigquery/dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -510,7 +510,8 @@ def __eq__(self, other):
return (
self.role == other.role
and self.entity_type == other.entity_type
and self._normalize_entity_id(self.entity_id) == self._normalize_entity_id(other.entity_id)
and self._normalize_entity_id(self.entity_id)
== self._normalize_entity_id(other.entity_id)
and self.condition == other.condition
)

Expand Down
Loading