Skip to content

Commit

Permalink
fix nits
Browse files Browse the repository at this point in the history
  • Loading branch information
ryansingman committed Aug 2, 2023
1 parent f1d5102 commit af4d02f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion cleanlab_studio/internal/api/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -363,7 +363,7 @@ def start_prediction(api_key: str, model_id: str, query_id: str) -> None:


def get_prediction_status(api_key: str, query_id: str) -> Dict[str, str]:
"""Gets status of model prediction query. Returns status, and optionally the result_url or error message."""
"""Gets status of model prediction query. Returns status, and optionally the result url or error message."""
res = requests.get(
f"{model_base_url}/predict/{query_id}",
headers=_construct_headers(api_key),
Expand Down
3 changes: 1 addition & 2 deletions cleanlab_studio/studio/inference.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,13 @@
import csv
import io
import time
from typing import List, Optional, Tuple, Union
from typing import List, Tuple, Union
from typing_extensions import TypeAlias

import numpy as np
import numpy.typing as npt
import pandas as pd

from cleanlab_studio.errors import APIError
from cleanlab_studio.internal.api import api


Expand Down

0 comments on commit af4d02f

Please sign in to comment.