We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5de953a commit 67ddb7cCopy full SHA for 67ddb7c
1 file changed
examples/basic/quickstart.py
@@ -96,8 +96,8 @@ class Status(IntEnum):
96
log_call("client.list_tables()")
97
tables = client.list_tables()
98
99
-# LogicalName should be lowercase, but let's be defensive with case-insensitive comparison
100
-existing_table = next((t for t in tables if t.get("LogicalName", "").lower() == "new_sampleitem"), None)
+# LogicalName is always lowercase (SDK normalizes)
+existing_table = next((t for t in tables if t.get("LogicalName", "") == "new_sampleitem"), None)
101
if existing_table:
102
table_info = client.get_table_info("new_sampleitem")
103
created_this_run = False
0 commit comments