"""
Capstone Team Project.  Sets the ROBOT NUMBER for YOUR team's robot.
Winter term, 2019-2020.
"""


def get_robot_number():
    my_robot_number = None
    my_robot_number = 34  # TODO: Remove this line!
    return my_robot_number
    # --------------------------------------------------------------------------
    # TODO: 1. Set   my_robot_number   in the above to YOUR team's robot number
    #   (e.g., 5 or 27).  Set it to   None   if you do NOT want to send messages
    #   to/from the robot (e.g., if you only want to display the GUI).
    # --------------------------------------------------------------------------