Skip to content

Commit

Permalink
fix cast type signature
Browse files Browse the repository at this point in the history
  • Loading branch information
rossviljoen committed Nov 24, 2023
1 parent d76d28a commit 09521ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lab/generic.py
Original file line number Diff line number Diff line change
Expand Up @@ -566,7 +566,7 @@ def range(stop):

@dispatch
@abstract()
def cast(dtype: Numeric, a: DType): # pragma: no cover
def cast(dtype: DType, a: Numeric): # pragma: no cover
"""Cast an object to another data type.
Args:
Expand Down

0 comments on commit 09521ad

Please sign in to comment.