Haleshot commited on
Commit
1f494a7
·
unverified ·
1 Parent(s): 9e9f978

Fix string formatting in markdown cells for Alice's age and Bob's interests to use single quotes for consistency.

Browse files
Files changed (1) hide show
  1. python/006_dictionaries.py +2 -2
python/006_dictionaries.py CHANGED
@@ -196,13 +196,13 @@ def _():
196
 
197
  @app.cell
198
  def _(mo, nested_data):
199
- mo.md(f"Alice's age: {nested_data["users"]["alice"]["age"]}")
200
  return
201
 
202
 
203
  @app.cell
204
  def _(mo, nested_data):
205
- mo.md(f"Bob's interests: {nested_data["users"]["bob"]["interests"]}")
206
  return
207
 
208
 
 
196
 
197
  @app.cell
198
  def _(mo, nested_data):
199
+ mo.md(f"Alice's age: {nested_data['users']['alice']['age']}")
200
  return
201
 
202
 
203
  @app.cell
204
  def _(mo, nested_data):
205
+ mo.md(f"Bob's interests: {nested_data['users']['bob']['interests']}")
206
  return
207
 
208