Skip to content

Commit

Permalink
chore: Merge with main
Browse files Browse the repository at this point in the history
  • Loading branch information
jopemachine committed Sep 30, 2024
1 parent cf4d7d5 commit 412b9a1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ai/backend/manager/container_registry/harbor.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ async def fetch_repositories(
)
registry_projects = cast(list[str | None], result.scalars().all())

rqst_args = {}
rqst_args: dict[str, Any] = {}
if self.credentials:
rqst_args["auth"] = aiohttp.BasicAuth(
self.credentials["username"],
Expand Down Expand Up @@ -190,7 +190,7 @@ async def fetch_repositories(
)
registry_projects = cast(list[str | None], result.scalars().all())

rqst_args = {}
rqst_args: dict[str, Any] = {}
if self.credentials:
rqst_args["auth"] = aiohttp.BasicAuth(
self.credentials["username"],
Expand Down

0 comments on commit 412b9a1

Please sign in to comment.