Skip to content

Commit

Permalink
fixing typo
Browse files Browse the repository at this point in the history
  • Loading branch information
azrael417 committed Jan 22, 2025
1 parent f11da53 commit 9826c07
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion torch_harmonics/quadrature.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def _precompute_grid(n: int, grid: Optional[str]="equidistant", a: Optional[floa

return xlg, wlg

@lru_cache(typed=True, copy=True):
@lru_cache(typed=True, copy=True)
def _precompute_longitudes(nlon: int):
lons = torch.linspace(0, 2 * math.pi, nlon+1, dtype=torch.float64)[:-1]
return lons
Expand Down

0 comments on commit 9826c07

Please sign in to comment.