Ch13 small typo
Bug #677964 reported by
Louis
This bug affects 1 person
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
thinkcspy |
New
|
Undecided
|
Unassigned |
Bug Description
def distance_
return ((self.x ** 2) + (self.y ** 2) ** 0.5)
should be:
def distance_
return ((self.x ** 2) + (self.y ** 2)) ** 0.5
To post a comment you must log in.