hermandr commited on
Commit
7383270
·
verified ·
1 Parent(s): 35eb015

changed names

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -16,8 +16,8 @@ def get_parents(child:str)-> str: #it's import to specify the return type
16
  child: the child's name
17
  """
18
  chid_parent_dict = {
19
- "herman": ("VK", "PD"),
20
- "maria": ("BP", "Guri")
21
  }
22
  return chid_parent_dict[child]
23
 
 
16
  child: the child's name
17
  """
18
  chid_parent_dict = {
19
+ "Herman": ("VK", "PD"),
20
+ "Maria": ("BP", "Guri")
21
  }
22
  return chid_parent_dict[child]
23