Skip to content

Commit 84819ae

Browse files
authored
Fix print statement to use instance method (#1)
1 parent 9c11728 commit 84819ae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/recipes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ This page contains a few common recipes using the functions provided by `astro_p
88
from astro_pi_orbit import ISS
99

1010
iss = ISS()
11-
print(ISS.coordinates())
11+
print(iss.coordinates())
1212
```
1313
## Take a photo and embed it with the current ISS coordinates
1414

0 commit comments

Comments
 (0)