Fix missing parenthesis in CONTRIBUTING.md (#6374)

In #6361 the CONTRIBUTING.md was updated to reflect the use of black for code formatting.
However, as part of that change a typo was made in the link to pylint. This commit corrects that
issue so the link to pylint works in the rendered markdown.
This commit is contained in:
Ikko Hamamura 2021-05-08 01:19:38 +09:00 committed by GitHub
parent e9a0e3d524
commit 567db74822
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -368,7 +368,7 @@ Note: If you have run `test/ipynb/mpl_tester.ipynb` locally it is possible some
Qiskit Terra uses 2 tools for verify code formatting and lint checking. The
first tool is [black](https://github.com/psf/black) which is a code formatting
tool that will automatically update the code formatting to a consistent style.
The second tool is [pylint]https://www.pylint.org/) which is a code linter
The second tool is [pylint](https://www.pylint.org/) which is a code linter
which does a deeper analysis of the Python code to find both style issues and
potential bugs and other common issues in Python.