Skip to content

Commit 5a97168

Browse files
committed
fix: formatting style
1 parent c0f7250 commit 5a97168

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/webapp/routers/models.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -598,9 +598,12 @@ def get_model_versions(
598598
databricks_control: Annotated[DatabricksControl, Depends(DatabricksControl)],
599599
) -> Any:
600600

601-
model_name = decode_url_piece(model_name)
601+
transformed_model_name = decode_url_piece(model_name)
602602
has_access_to_inst_or_err(inst_id, current_user)
603603

604+
print(f"Initial model name = {model_name}")
605+
print(f"Converted model name {transformed_model_name}")
606+
604607
model_version_info = databricks_control.fetch_model_version(model_name)
605608

606609
return model_version_info

0 commit comments

Comments
 (0)