Skip to content

Commit

Permalink
fix_future_warning
Browse files Browse the repository at this point in the history
  • Loading branch information
pascalgutjahr committed Oct 18, 2024
1 parent 9b72f67 commit ad67656
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dnn_reco/data_handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ def read_icecube_data(
size = len(_time_range["Event"])
eventIDDict = {}
for row in _time_range.iterrows():
eventIDDict[(row[1][0], row[1][1], row[1][2], row[1][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 ad67656

Please sign in to comment.