Remove obsolete comment.

This commit is contained in:
Marcus Scholz 2020-03-21 18:36:25 +01:00
parent c2ed0e1c2a
commit 3e5cfcf327
1 changed files with 3 additions and 5 deletions

View File

@ -94,13 +94,11 @@ for src_photo in args.photos:
# Here the matching magic takes place
match = Match(photo.get_date, radiation_list, position_list)
# Formatted output:
#print(Output(photo.get_target_photo[0], photo.get_date, match.radiation[1],
# match.position[1][1], match.position[1][2], match.position[1][3]))
data = Output(match.radiation[1], match.position[1][1], match.position[1][2], match.position[1][3])
# Formatted output:
data = Output(match.radiation[1], match.position[1][1], match.position[1][2], match.position[1][3])
print('{:<15} {:<25} {:<22}'.format(photo.get_target_photo[0], str(photo.get_date), str(data)))
#print(match)
# Write exif data
Exif(photo.get_target_photo[1], args.dry, match.radiation[1],