1 2 3 4 5 6 7 8 9 10 11 12 | class VLine(Line):
def __getattribute__(self, name):
if name == 'right':
return self.left
return super(VLine, self).__getattribute__(name)
class HLine(Line):
def __getattribute__(self, name):
if name == 'bottom':
return self.top
return super(HLine, self).__getattribute__(name)
|
More like this
- Widget for DateTime values on Geraldo Reports by marinho 4 years, 1 month ago
- Widget for Money values on Geraldo Reports by marinho 4 years, 1 month ago
- Unit Test Profiling by justquick 4 years, 3 months ago
- Allow editing of the selected object of the filter_vertical/filter_horizontal widget with jquery by jpic 4 years, 7 months ago
- Group sequence into rows and columns for a TABLE by davidwtbuxton 2 years, 3 months ago
Comments