Skip to content

Commit

Permalink
chore: corrected success response
Browse files Browse the repository at this point in the history
  • Loading branch information
sbansla committed Oct 3, 2024
1 parent 55d2110 commit a42cf12
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sendgrid/http/response.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@


class HTTPStatus:
SUCCESS = range(200, 300) # Success codes: 200-299
SUCCESS = range(200, 400) # Success codes: 200-399
CLIENT_ERROR = range(400, 500) # Client error codes: 400-499
SERVER_ERROR = range(500, 600) # Server error codes: 500-599

Expand Down

0 comments on commit a42cf12

Please sign in to comment.