Skip to content

Commit

Permalink
check f-string linting one more time
Browse files Browse the repository at this point in the history
  • Loading branch information
semuadmin committed Sep 8, 2024
1 parent e1394ed commit 6c448b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sandpit/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ def bearing(lat1: float, lon1: float, lat2: float, lon2: float) -> float:
:rtype: float
"""

print(f"{getenv("PATH","notfound")}")
print(f"{getenv('PATH','notfound')}")
coordinates = lat1, lon1, lat2, lon2
phi1, lambda1, phi2, lambda2 = [radians(c) for c in coordinates]
y = sin(lambda2 - lambda1) * cos(phi2)
Expand Down

0 comments on commit 6c448b3

Please sign in to comment.