Skip to content

Commit

Permalink
Rename RemoteClient to RemoteAPI
Browse files Browse the repository at this point in the history
  • Loading branch information
gmertes committed Mar 12, 2024
1 parent f4ef3b0 commit 9a13c50
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ai_models/remote.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def __init__(self, **kwargs):
self.cfg["download_assets"] = False
self.cfg["assets_extra_dir"] = None
self._param = {}
self.api = RemoteClient()
self.api = RemoteAPI()

super().__init__(**self.cfg)

Expand Down Expand Up @@ -88,7 +88,7 @@ def __call__(self, r):
return r


class RemoteClient:
class RemoteAPI:
def __init__(
self,
input_file: str = None,
Expand Down

0 comments on commit 9a13c50

Please sign in to comment.