Skip to content

Commit

Permalink
Merge pull request #14 from rossviljoen/rv/cast-type-fix
Browse files Browse the repository at this point in the history
small fix to cast type signature
  • Loading branch information
wesselb authored Nov 27, 2023
2 parents d76d28a + 09521ad commit 3d0cca8
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 3d0cca8

Please sign in to comment.