Fix white space in boxes/extents.py
now that we mess up the history anyway.
This commit is contained in:
parent
7f1249cb67
commit
4483e483f7
|
@ -19,7 +19,7 @@ class Extents:
|
|||
|
||||
def __add__(self,extent):
|
||||
#todo: why can this happen?
|
||||
if extent ==0:
|
||||
if extent == 0:
|
||||
return Extents(self.xmin,self.ymin,self.xmax,self.ymax)
|
||||
return Extents(
|
||||
min(self.xmin,extent.xmin),min(self.ymin,extent.ymin),
|
||||
|
|
Loading…
Reference in New Issue