Fix noqa example comment [ci skip]

This commit is contained in:
Anthony Sottile 2018-12-27 17:03:55 +00:00
parent d3d1b19aec
commit 6ad56f73da

View file

@ -31,7 +31,7 @@ NOQA_INLINE_REGEXP = re.compile(
# ``# noqa:E123,W451,F921`` # ``# noqa:E123,W451,F921``
# ``# NoQA: E123,W451,F921`` # ``# NoQA: E123,W451,F921``
# ``# NOQA: E123,W451,F921`` # ``# NOQA: E123,W451,F921``
# ``# NOQA: E123,W451,F921`` # ``# NOQA:E123,W451,F921``
# We do not want to capture the ``: `` that follows ``noqa`` # We do not want to capture the ``: `` that follows ``noqa``
# We do not care about the casing of ``noqa`` # We do not care about the casing of ``noqa``
# We want a comma-separated list of errors # We want a comma-separated list of errors