Skip to content

Commit adffcf5

Browse files
authored
fix linting in dataset.py
1 parent 266989a commit adffcf5

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

google/cloud/bigquery/dataset.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -510,7 +510,8 @@ def __eq__(self, other):
510510
return (
511511
self.role == other.role
512512
and self.entity_type == other.entity_type
513-
and self._normalize_entity_id(self.entity_id) == self._normalize_entity_id(other.entity_id)
513+
and self._normalize_entity_id(self.entity_id)
514+
== self._normalize_entity_id(other.entity_id)
514515
and self.condition == other.condition
515516
)
516517

0 commit comments

Comments
 (0)