Skip to content

Commit

Permalink
remove unnecessary cast
Browse files Browse the repository at this point in the history
  • Loading branch information
alex-dixon committed Nov 10, 2024
1 parent 7f82ee8 commit 3f39f86
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ell/stores/studio.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ def from_api(input: ell.types.serialize.WriteLMPInput):
initial_global_vars=input.initial_global_vars,
initial_free_vars=input.initial_free_vars,
commit_message=input.commit_message,
created_at=cast(datetime, input.created_at)
created_at=input.created_at
)


Expand Down

0 comments on commit 3f39f86

Please sign in to comment.