Skip to content

Commit 9d950b1

Browse files
committed
fix lint
1 parent 60b3564 commit 9d950b1

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

ros/lib/kessel/kessel_interface.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,13 @@ def query_kessel(auth_key):
4242
workspaces = []
4343

4444
try:
45-
workspaces = [w.resource_id for w in client.get_resources(ObjectType.workspace(), "ros_read_analysis", Resource.principal(user_id))]
45+
workspaces = [
46+
w.resource_id for w in client.get_resources(
47+
ObjectType.workspace(),
48+
"ros_read_analysis",
49+
Resource.principal(user_id)
50+
)
51+
]
4652
except Exception as err:
4753
LOG.info(f"Failed to fetch the workspaces {err}")
4854

0 commit comments

Comments
 (0)