Skip to content

Commit

Permalink
cleanup unnecessary files.
Browse files Browse the repository at this point in the history
Signed-off-by: Software Developer <[email protected]>
  • Loading branch information
dsuhinin committed Oct 2, 2024
1 parent b4fe601 commit 2c9b400
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions mlflow_go/store/tracking.py
Original file line number Diff line number Diff line change
Expand Up @@ -166,15 +166,6 @@ def log_metric(self, run_id, metric):
)
self.service.call_endpoint(get_lib().TrackingServiceLogMetric, request)

def log_param(self, run_id, param):
request = LogParam(
run_id=run_id,
key=param.key,
value=param.value,
)
self.service.call_endpoint(get_lib().TrackingServiceLogParam, request)


def TrackingStore(cls):
return type(cls.__name__, (_TrackingStore, cls), {})

Expand Down

0 comments on commit 2c9b400

Please sign in to comment.