| Issue 247: | Unnecessary code | |
| 1 person starred this issue and may be notified of changes. | Back to list |
I'd just like to report this line of code in scatter.py: 192. if self._scale < self.scale_min or \ 193. self.scale_max is not None and self._scale > self.scale_max: 194. scale = self.scale_max 195. self._scale = old_scale 196. scale = 1 The double assignment to scale is unnecessary, i.e. line 194 can be deleted. No biggie, just thought I'd let you know. =). /Johan
Jul 2, 2010
(No comment was entered for this change.)
Labels:
Milestone-0.5
|
Labels: Milestone-0.4.1 Component-Core