Skip to content

Commit

Permalink
fix: straggling issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Justintime50 committed Jun 25, 2024
1 parent 60e7051 commit b70d86d
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion official/docs/golang/current/batches/add-shipments.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
func main() {
client := easypost.New("EASYPOST_API_KEY")

shipment, _ := client.GetShipment()
shipment, _ := client.GetShipment("shp_...")

batch, _ := client.AddShipmentsToBatch("batch_...", shipment)

Expand Down
4 changes: 3 additions & 1 deletion official/docs/python/current/shipments/list.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

client = easypost.EasyPostClient("EASYPOST_API_KEY")

shipments = client.shipment.all(page_size=5)
shipments = client.shipment.all(
page_size=5,
)

print(shipments)
4 changes: 3 additions & 1 deletion official/docs/python/current/trackers/list.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

client = easypost.EasyPostClient("EASYPOST_API_KEY")

trackers = client.tracker.all(page_size=5)
trackers = client.tracker.all(
page_size=5,
)

print(trackers)

0 comments on commit b70d86d

Please sign in to comment.