diff --git a/arthur/exts/kubernetes/pods.py b/arthur/exts/kubernetes/pods.py index 91f18ad..d52a439 100644 --- a/arthur/exts/kubernetes/pods.py +++ b/arthur/exts/kubernetes/pods.py @@ -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: @@ -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("""