We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e062783 commit 046c7b0Copy full SHA for 046c7b0
1 file changed
examples/quickstart.py
@@ -141,8 +141,7 @@ class Status(IntEnum):
141
pass
142
# Fail fast: all operations must use the custom table
143
sys.exit(1)
144
-entity_set = table_info.get("entity_set_name")
145
-logical = table_info.get("entity_logical_name") or entity_set.rstrip("s")
+logical = table_info.get("entity_logical_name")
146
147
# Derive attribute logical name prefix from the entity logical name (segment before first underscore)
148
attr_prefix = logical.split("_", 1)[0] if "_" in logical else logical
0 commit comments