Skip to content

Commit

Permalink
remove redundant square brackets from type hint
Browse files Browse the repository at this point in the history
  • Loading branch information
crcrpar authored Dec 16, 2024
1 parent c6294ac commit 279cb4d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion thunder/executors/nvfuserex_impl.py
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,7 @@ def compute_symbolic_shape(

def compute_contiguity(
shape: torch.Size | Sequence[int], stride: Sequence[int]
) -> tuple[[tuple[bool, ...], tuple[int, ...]]]:
) -> tuple[tuple[bool, ...], tuple[int, ...]]:
"""
Computes the contiguity and stride_order of a tensor using nvFuser's notion.
Expand Down

0 comments on commit 279cb4d

Please sign in to comment.