Skip to content

Commit

Permalink
fix by running pre-commit locally
Browse files Browse the repository at this point in the history
  • Loading branch information
yunjunz committed Mar 12, 2024
1 parent 1445b22 commit 12332ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mintpy/reference_point.py
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ def reference_point_attribute(atr, y, x):
atrNew['REF_X'] = str(x)
coord = ut.coordinate(atr)
if 'X_FIRST' in atr.keys():
atrNew['REF_LAT'], atrNew['REF_LON'] = [str(val) for val in coord.yx2lalo(y, x)]
atrNew['REF_LAT'], atrNew['REF_LON'] = (str(val) for val in coord.yx2lalo(y, x))
return atrNew


Expand Down

0 comments on commit 12332ab

Please sign in to comment.