diff --git a/today.py b/today.py index c3574fe..4e84a53 100644 --- a/today.py +++ b/today.py @@ -1,6 +1,11 @@ -''' -This is the module docstring -''' +"""A module computing buddy pair names for the day""" -pass # YOUR CODE HERE +def my_name_is(): + """Return my GitHub username.""" + return "gcemozdogan" + + +def my_buddy_is(): + """Return my buddy's GitHub username.""" + return "gcemozdogan"