Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Clean up sendgrid.py #844

Merged
merged 2 commits into from
Feb 26, 2020
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions sendgrid/sendgrid.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
"""
This library allows you to quickly and easily use the Twilio SendGrid Web API v3 via
Python.
This library allows you to quickly and easily use the Twilio SendGrid Web API v3 via Python.

For more information on this library, see the README on GitHub.
https://github.com/sendgrid/sendgrid-python
Expand All @@ -15,10 +14,8 @@

import os
import warnings

import python_http_client


class SendGridAPIClient(object):

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

if you'll use a good linter like python-black. It'll automatically handle all these things and also the two-line gap before python classes are best practices. You may have a look at other files too.

"""The Twilio SendGrid API Client.

Expand Down