Index: flake8-abp/tests/A112.py |
=================================================================== |
new file mode 100644 |
--- /dev/null |
+++ b/flake8-abp/tests/A112.py |
@@ -0,0 +1,11 @@ |
+class Foo: |
+ def unicode(self): |
+ # A112 |
+ u"""This should not be a unicode docstring""" |
+ |
+ |
+def foo(): |
+ return [ |
+ # A112 |
+ u'yeahyeah' |
+ ] |