Skip to content

Commit

Permalink
(compasUtils) fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
themikelau committed Dec 4, 2023
1 parent 7fde047 commit 66f7aa9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion misc/unsupported_utils/compasUtils.py
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ def getEventHistory(h5file, exclude_null=False):

iorder = np.argsort(seedsToIterate)
returnedSeeds = [None] * np.size(seedsToIterate) # array of seeds - will only contain seeds that have events (of any type)
returnedEvents = [None] * np.size(seedsToIterate) # array of events - same size as returnedSeeds (icludes event times)
returnedEvents = [None] * np.size(seedsToIterate) # array of events - same size as returnedSeeds (includes event times)

for count, ind in enumerate(iorder):
seed = seedsToIterate[ind]
Expand Down

0 comments on commit 66f7aa9

Please sign in to comment.