Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added this to fix code quality linting error
Browse files Browse the repository at this point in the history
samyarpotlapalli committed Aug 22, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
1 parent 14a54f0 commit 223d671
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/sasctl/tasks.py
Original file line number Diff line number Diff line change
@@ -1022,7 +1022,7 @@ def score_model_with_cas(
description: str = "",
server_name: str = "cas-shared-default",
library_name: str = "Public",
model_version: str = "latest"
model_version: str = "latest",
):
score_definition = sd.create_score_definition(
score_def_name,
@@ -1032,7 +1032,7 @@ def score_model_with_cas(
description=description,
server_name=server_name,
library_name=library_name,
model_version=model_version
model_version=model_version,
)
score_execution = se.create_score_execution(score_definition.id)
score_execution_poll = se.poll_score_execution_state(score_execution)

0 comments on commit 223d671

Please sign in to comment.