Skip to content

Commit

Permalink
Add missing comma
Browse files Browse the repository at this point in the history
  • Loading branch information
kdestin committed Oct 6, 2022
1 parent 5e49741 commit fe0168d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ def begin_create_or_update(self, endpoint: OnlineEndpoint, *, local: bool = Fals
workspace_name=self._workspace_name,
endpoint_name=endpoint.name,
body=endpoint_resource,
cls=lambda response, deserialized, headers: OnlineEndpoint._from_rest_object(deserialized)
cls=lambda response, deserialized, headers: OnlineEndpoint._from_rest_object(deserialized),
**self._init_kwargs,
)
return poller
Expand Down

0 comments on commit fe0168d

Please sign in to comment.