Left: | ||
Right: |
OLD | NEW |
---|---|
(Empty) | |
1 class Foo: | |
2 def unicode(self): | |
3 # A112 | |
4 u"""This should not be a unicode docstring""" | |
Sebastian Noack
2016/05/27 12:33:48
This test code can be simplified by using a functi
| |
5 | |
6 | |
7 def foo(): | |
8 return [ | |
Sebastian Noack
2016/05/27 12:33:48
This test code can b e simplified by just returnin
| |
9 # A112 | |
10 u'yeahyeah' | |
11 ] | |
OLD | NEW |