From 4d72b40e8be2a559792750e5b25012379d56fb36 Mon Sep 17 00:00:00 2001 From: David Peters Date: Wed, 13 Mar 2024 11:26:25 +0100 Subject: [PATCH] expand robot level to system and projects using query --- src/harbor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/harbor.py b/src/harbor.py index ff7e979..719b166 100644 --- a/src/harbor.py +++ b/src/harbor.py @@ -156,7 +156,7 @@ async def construct_full_robot_name(target_robot: Robot) -> str: async def sync_robot_accounts(target_robots: [Robot]): - current_robots = await client.get_robots() + current_robots = await client.get_robots(query='Level=*') current_robot_names = [ current_robot.name for current_robot in current_robots ]