File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -114,7 +114,7 @@ def _run_walkthrough(client):
114114 print (f" Logical Name: { table_info .get ('table_logical_name' )} " )
115115 print (f" Entity Set: { table_info .get ('entity_set_name' )} " )
116116 else :
117- log_call (f"client.tables.create('{ table_name } ', columns={{...}})" )
117+ log_call (f"client.tables.create('{ table_name } ', columns={{...}}, display_name='Walkthrough Demo' )" )
118118 columns = {
119119 "new_Title" : "string" ,
120120 "new_Quantity" : "int" ,
@@ -123,7 +123,7 @@ def _run_walkthrough(client):
123123 "new_Notes" : "memo" ,
124124 "new_Priority" : Priority ,
125125 }
126- table_info = backoff (lambda : client .tables .create (table_name , columns ))
126+ table_info = backoff (lambda : client .tables .create (table_name , columns , display_name = "Walkthrough Demo" ))
127127 print (f"[OK] Created table: { table_info .get ('table_schema_name' )} " )
128128 print (f" Columns created: { ', ' .join (table_info .get ('columns_created' , []))} " )
129129
You can’t perform that action at this time.
0 commit comments