diff options
author | 2024-03-30 21:15:19 +0000 | |
---|---|---|
committer | 2024-03-30 21:15:19 +0000 | |
commit | 09b6cf316492b5ae6dd15bb2ed35d3c6c99c2338 (patch) | |
tree | f060ea0e59acdaa96d4ddc485a67706a0c609557 | |
parent | handle pod lists over 4,000 characters (diff) |
init pod table list with an initial empty-list
-rw-r--r-- | arthur/exts/kubernetes/pods.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arthur/exts/kubernetes/pods.py b/arthur/exts/kubernetes/pods.py index 20b4133..8ecaf50 100644 --- a/arthur/exts/kubernetes/pods.py +++ b/arthur/exts/kubernetes/pods.py @@ -49,7 +49,7 @@ class Pods(commands.Cog): generate_error_message(description="No pods found, check the namespace exists.") ) - tables = [] + tables = [[]] for pod in pod_list.items: match pod.status.phase: |