Skip to content

Commit

Permalink
fix: [TMX-393] remove unused function parameter (#30)
Browse files Browse the repository at this point in the history
* remove unwanted function parameter

* update version semantic

---------

Co-authored-by: Shu Ming Peh <>
  • Loading branch information
shumingpeh authored Nov 6, 2023
1 parent 9e95100 commit 6f7a381
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 4 deletions.
1 change: 0 additions & 1 deletion hip_data_ml_utils/mlflow_databricks/mlflow_serve.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ def enable_endpoint(
model_name: str,
databricks_cluster_hostname: str,
databricks_workspace_token: str,
dbfs_table_path: str,
model_version: int,
request_time_out: int = 60,
) -> bool:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "hip_data_ml_utils"
version = "1.2.4"
version = "1.2.5"
description = "Common Python tools and utilities for Hipages ML work"
authors = ["Hipages Data Team <datascience@hipagesgroup.com.au>"]
license = "MIT"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ def test_enable_endpoint(self, dummy_url, request_time_out: int = 30) -> None:
model_name="test_model",
databricks_cluster_hostname=dummy_url,
databricks_workspace_token="test_token",
dbfs_table_path="dbfs:/test-logs",
model_version=151,
)

Expand Down Expand Up @@ -57,7 +56,6 @@ def test_enable_endpoint_error(self, dummy_url, request_time_out: int = 30) -> N
model_name="test_model",
databricks_cluster_hostname=dummy_url,
databricks_workspace_token="test_token",
dbfs_table_path="dbfs:/test-logs",
model_version=151,
)

Expand Down

0 comments on commit 6f7a381

Please sign in to comment.