Skip to content
Snippets Groups Projects
Commit 32ea77de authored by Mattia Mancini's avatar Mattia Mancini
Browse files

SSB-44: python3 conversion issue

parent 4ab0e918
No related branches found
No related tags found
1 merge request!44Merge back holography to master
...@@ -217,7 +217,7 @@ class HolographyDataset(): ...@@ -217,7 +217,7 @@ class HolographyDataset():
# frequency. # frequency.
central_beamlet = dict() central_beamlet = dict()
for (frequency_string, beamlets) in pseudo_distance.items(): for (frequency_string, beamlets) in pseudo_distance.items():
values = beamlets.values() values = list(beamlets.values())
keys = beamlets.keys() keys = beamlets.keys()
minimal_distance = min(values) minimal_distance = min(values)
# If I find a second beamlet that is 'closest' to the source for the # If I find a second beamlet that is 'closest' to the source for the
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment