Fix white space in boxes/extents.py

now that we mess up the history anyway.
This commit is contained in:
Tino Hager 2022-08-13 21:56:17 +02:00 committed by Florian Festi
parent 7f1249cb67
commit 4483e483f7
1 changed files with 6 additions and 6 deletions

View File

@ -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),