Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Apply suggestions from code review
Co-authored-by: Copilot <[email protected]>
  • Loading branch information
weinbe58 and Copilot authored Jul 19, 2025
commit 7493f62a3c70afd9cd01a4da1f99d01b7d08f488
2 changes: 1 addition & 1 deletion src/bloqade/geometry/dialects/grid/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ def __getitem__(self, indices):
return self.get_view(x_indices=x_indices, y_indices=y_indices)

def __hash__(self) -> int:
return hash((Grid, self.x_spacing, self.y_spacing, self.x_init, self.y_init))
return hash((self.x_spacing, self.y_spacing, self.x_init, self.y_init))

def __eq__(self, other: Any) -> bool:
return (
Expand Down
Loading