Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 791c7cd

Browse files
Add Pylint
1 parent aa3928a commit 791c7cd

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ Generally, we follow the style guidelines as suggested by the official language.
168168
169169
* [PEP8](https://www.python.org/dev/peps/pep-0008/)
170170
171-
Please run your code through [pyflakes](https://pypi.python.org/pypi/pyflakes) and [pep8](https://pypi.python.org/pypi/pep8)
171+
Please run your code through [pyflakes](https://pypi.python.org/pypi/pyflakes), [pylint](https://www.pylint.org/) and [pep8](https://pypi.python.org/pypi/pep8)
172172
173173
### Directory Structure
174174

examples/example.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
Config(local_path)
1212
api_key = os.environ.get('SENDGRID_API_KEY')
1313
request_headers = {
14-
"Authorization": 'Bearer {0}'.format(api_key),
14+
"Authorization": 'Bearer {0}'.format(api_key),
1515
"Content-Type": "application/json"
1616
}
1717
client = Client(host=os.environ.get('MOCK_HOST'),

0 commit comments

Comments
 (0)