| Index: flake8-eyeo/flake8_eyeo.py |
| =================================================================== |
| --- a/flake8-eyeo/flake8_eyeo.py |
| +++ b/flake8-eyeo/flake8_eyeo.py |
| @@ -397,11 +397,9 @@ |
| if first_token and re.search(r'^(?:(?:def|class)\s|$)', |
| previous_logical): |
| - if quote != '"""': |
| - yield (start, 'A109 use triple double ' |
| - 'quotes for docstrings') |
| + pass # Ignore docstrings |
| elif start[0] != end[0]: |
| - pass |
| + pass # Ignore multiline strings |
|
Sebastian Noack
2017/10/09 02:08:58
These are checked by flake8-docstrings now.
|
| elif 'r' in prefixes: |
| if quote != "'" and not (quote == '"' and "'" in text): |
| yield (start, 'A110 use single quotes for raw string') |