Skip to content

Commit

Permalink
(knowledge)(rwc2023) update person names
Browse files Browse the repository at this point in the history
  • Loading branch information
MatthijsBurgh committed Jul 4, 2023
1 parent e97be10 commit dff8b88
Showing 1 changed file with 6 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
from __future__ import print_function

female_names = ["amelia", "angel", "ava", "charlie", "charlotte", "hunter", "max", "mia", "olivia", "parker", "sam"]
male_names = ["angel", "charlie", "hunter", "jack", "max", "noah", "oliver", "parker", "sam", "thomas", "william"]
names = female_names + male_names
female_names = ["adel", "angel", "axel", "charlie", "jane", "jules", "morgan", "paris", "robin", "simone"]
male_names = ["adel", "angel", "axel", "charlie", "john", "jules", "morgan", "paris", "robin", "simone"]
names = set(female_names)
names.update(set(male_names))
names = sorted(list(names))


locations = [
{"name": "house_plant", "room": "living_room", "manipulation": False},
Expand Down

0 comments on commit dff8b88

Please sign in to comment.