Skip to content

Commit

Permalink
Run ruff format
Browse files Browse the repository at this point in the history
  • Loading branch information
jb3 committed Mar 30, 2024
1 parent 8a80f19 commit b68031d
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions arthur/exts/kubernetes/pods.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,7 @@ async def pods_list(self, ctx: commands.Context, namespace: str = "default") ->

if len(pod_list.items) == 0:
return await ctx.send(
generate_error_message(
description="No pods found, check the namespace exists."
)
generate_error_message(description="No pods found, check the namespace exists.")
)

for pod in pod_list.items:
Expand Down Expand Up @@ -62,7 +60,7 @@ async def pods_list(self, ctx: commands.Context, namespace: str = "default") ->
table_data,
headers=["Status", "Pod", "Phase", "IP", "Node"],
tablefmt="psql",
colalign=("center", "left", "center", "center", "center")
colalign=("center", "left", "center", "center", "center"),
)

return_message = dedent("""
Expand Down

0 comments on commit b68031d

Please sign in to comment.