Skip to content

Commit

Permalink
pre-commit
Browse files Browse the repository at this point in the history
  • Loading branch information
pascalgutjahr committed Oct 22, 2024
1 parent ad67656 commit d3c402b
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion dnn_reco/data_handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,14 @@ def read_icecube_data(
size = len(_time_range["Event"])
eventIDDict = {}
for row in _time_range.iterrows():
eventIDDict[(row[1].iloc[0], row[1].iloc[1], row[1].iloc[2], row[1].iloc[3])] = row[0]
eventIDDict[
(
row[1].iloc[0],
row[1].iloc[1],
row[1].iloc[2],
row[1].iloc[3],
)
] = row[0]

# Create arrays for input data
x_ic78 = np.ones(
Expand Down

0 comments on commit d3c402b

Please sign in to comment.