Skip to content

Commit

Permalink
Small indentation error
Browse files Browse the repository at this point in the history
  • Loading branch information
bluemellophone committed Sep 16, 2020
1 parent ecc8b91 commit 514e372
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions vtool/exif.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@
GPS_TAG_TO_GPSID = {val: key for (key, val) in six.iteritems(GPSTAGS)}

# Relevant EXIF Tags
#'GPSInfo': 34853
#'SensitivityType': 34864 # UNSUPPORTED
# 'GPSInfo': 34853
# 'SensitivityType': 34864 # UNSUPPORTED

GPSINFO_CODE = EXIF_TAG_TO_TAGID['GPSInfo']
DATETIMEORIGINAL_TAGID = EXIF_TAG_TO_TAGID['DateTimeOriginal']
Expand Down Expand Up @@ -272,7 +272,7 @@ def get_lat_lon(exif_dict, default=(-1, -1)):
gps_latitude = gps_info[GPSLATITUDE_CODE]
gps_latitude_ref = gps_info[GPSLATITUDEREF_CODE]
gps_longitude = gps_info[GPSLONGITUDE_CODE]
gps_longitude_ref = gps_info[GPSLONGITUDEREF_CODE]
gps_longitude_ref = gps_info[GPSLONGITUDEREF_CODE]
try:
lat = convert_degrees(gps_latitude)
if gps_latitude_ref != 'N':
Expand Down

0 comments on commit 514e372

Please sign in to comment.