Add change note.

This commit is contained in:
Mark Shannon
2019-01-28 13:01:04 +00:00
parent 53fbf51ee8
commit 4e5d4e265c

View File

@@ -20,6 +20,7 @@ Removes false positives seen when using Python 3.6, but not when using earlier v
| **Query** | **Expected impact** | **Change** |
|----------------------------|------------------------|------------------------------------------------------------------|
| Comparison using is when operands support \_\_eq\_\_ (`py/comparison-using-is`) | Fewer false positive results | Results where one of the objects being compared is an enum member are no longer reported. |
| Unused import (`py/unused-import`) | Fewer false positive results | Results where the imported module is used in a `doctest` string are no longer reported. |
| Unused import (`py/unused-import`) | Fewer false positive results | Results where the imported module is used in a type-hint comment are no longer reported. |