Skip to content

Commit bd4e874

Browse files
committed
Improve a code snippet comment to make more sense
1 parent 6ab45cd commit bd4e874

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ import skyblockpy
2626
skyblock = skyblockpy.Skyblock("api_key") # Initialize the Skyblock class with a prospective Hypixel API key.
2727

2828
def latest_auctions_raw() -> dict: # Make a function for returning API output, and highlight return output type as dict.
29-
output = skyblock.get_auctions(page=3) # Gets the API response.
29+
output = skyblock.get_auctions(page=3) # Gets the API response, and returns the third page of contents.
3030
return output
3131

3232
latest_auctions_raw() # Run the actual function now.

0 commit comments

Comments
 (0)