Skip to content

Commit eecc06a

Browse files
committed
chore: use uppercase
Signed-off-by: ktro2828 <kotaro.uetake@tier4.jp>
1 parent 1a5b204 commit eecc06a

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

docs/tutorials/cli/t4sanity.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ $ t4sanity <DATA_ROOT>
6262
>>>Sanity checking...: 2it [00:00, 18.69it/s]
6363
⚠️ Encountered some exceptions!!
6464
+-----------+---------+--------+------------------------------------------------------------------------------------------------+
65-
| DatasetID | Version | status | Message |
65+
| DatasetID | Version | Status | Message |
6666
+-----------+---------+--------+------------------------------------------------------------------------------------------------+
6767
| dataset1 | 2 | ERROR | bbox must be (xmin, ymin, xmax, ymax) and xmin <= xmax && ymin <= ymax: (1532, 198, 1440, 265) |
6868
| dataset2 | 1 | OK | |
@@ -79,7 +79,7 @@ $ t4sanity <DATA_ROOT> -iw
7979
>>>Sanity checking...: 2it [00:00, 21.54it/s]
8080
⚠️ Encountered some exceptions!!
8181
+-----------+---------+---------+------------------------------------------------------------------------------------------------+
82-
| DatasetID | Version | status | Message |
82+
| DatasetID | Version | Status | Message |
8383
+-----------+---------+---------+------------------------------------------------------------------------------------------------+
8484
| dataset1 | 2 | ERROR | bbox must be (xmin, ymin, xmax, ymax) and xmin <= xmax && ymin <= ymax: (1532, 198, 1440, 265) |
8585
| dataset2 | 1 | WARNING | Category token is empty for surface ann: 0c15d9c143fb2723c16ac7e0c735b0a8 |

t4_devkit/cli/sanity.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ def main(
5757
print("✅ No exceptions occurred!!")
5858
else:
5959
print("⚠️ Encountered some exceptions!!")
60-
headers = ["DatasetID", "Version", "status", "Message"]
60+
headers = ["DatasetID", "Version", "Status", "Message"]
6161
table = [[e.dataset_id, e.version, e.status, e.message] for e in exceptions]
6262
print(tabulate(table, headers=headers, tablefmt="pretty"))
6363

0 commit comments

Comments
 (0)