| Index: flake8-abp/README.md | 
| =================================================================== | 
| --- a/flake8-abp/README.md | 
| +++ b/flake8-abp/README.md | 
| @@ -28,16 +28,18 @@ | 
| literal/comprehension of that type can be used directly | 
| * `A106`: Use augment assignment | 
| * `A107`: `%` operator used for string formatting; this mechanism | 
| has been superseded by the string's `format()` method | 
| * `A108`: `+` operator to concatenate more than two strings | 
| * `A109`: Use triple double quotes for docstrings as recommended in PEP-257 | 
| * `A110`: Write single-line string literals as represented by `repr()` | 
| * `A111`: Redundant parantheses around if or while condition | 
| +* `A112`: Use `from __future__ import unicode_literals` instead of | 
| +          prefixing literals with "u" | 
|  | 
|  | 
| ### Redundancy and complexity | 
|  | 
| * `A201`: Redundant or superfluos `global` or `nonlocal` declaration | 
| * `A202`: Dead code after block is left | 
| * `A303`: Unused expression | 
| * `A204`: Redundant or superfluos pass statement | 
|  |