mikeudacity / robo-pace-betatest

0 stars 0 forks source link

letyrodri L02E16 #69

Open letyrodridc opened 7 years ago

letyrodridc commented 7 years ago

File: utils.py method: def printInfo(self):

Says: print "(%i, %i, %char)"%(sLocation[0], sLocation[1], sLocation[2])

But sLocation is not defined (is not a parameter either). It could be fix using self.sLocation, and that will force student to initialize that variable in init.

letyrodridc commented 7 years ago

sLocation is like start location. I think that the intention is to print the current location.

letyrodridc commented 7 years ago

Correction! It seems that method should receive sLocation as a parameter. The method printInfo has no sense :(

cangelogamboa commented 7 years ago

Thanks for your feedback. I will keep it in mind as I make improvements to the course.