Index: flake8-abp/tests/A302.py |
=================================================================== |
new file mode 100644 |
--- /dev/null |
+++ b/flake8-abp/tests/A302.py |
@@ -0,0 +1,23 @@ |
+# A302 |
+from io import open |
+file = open(__file__) |
+ |
+# A302 |
+id = 0 |
+ |
+ |
+# A302 |
+def hash(): |
+ pass |
+ |
+ |
+# A302 |
+class Exception: |
+ pass |
+ |
+ |
+class Foo: |
+ id = 0 |
+ |
+ def type(self): |
+ pass |