[bugfix] false indentation corrected (broken program logic fixed)
This commit is contained in:
parent
8dd100792e
commit
0d3fb8be93
@ -93,9 +93,9 @@ def getGlobalTimes(stream):
|
|||||||
for trace in stream:
|
for trace in stream:
|
||||||
if trace.stats.starttime < min_start:
|
if trace.stats.starttime < min_start:
|
||||||
min_start = trace.stats.starttime
|
min_start = trace.stats.starttime
|
||||||
if max_end is None or trace.stats.endtime > max_end:
|
if max_end is None or trace.stats.endtime > max_end:
|
||||||
max_end = trace.stats.endtime
|
max_end = trace.stats.endtime
|
||||||
return [min_start, max_end]
|
return min_start, max_end
|
||||||
|
|
||||||
|
|
||||||
def createCreationInfo(agency_id=None, creation_time=None, author=None):
|
def createCreationInfo(agency_id=None, creation_time=None, author=None):
|
||||||
|
Loading…
Reference in New Issue
Block a user