| Left: | ||
| Right: |
| OLD | NEW |
|---|---|
| (Empty) | |
| 1 class Foo: | |
| 2 def unicode(self): | |
| 3 # A112 | |
| 4 u"""This should not be a unicode docstring""" | |
| 5 | |
| 6 | |
| 7 def foo(): | |
|
Sebastian Noack
2016/06/01 09:37:52
The function and list seems redundant. How about t
| |
| 8 return [ | |
| 9 # A112 | |
| 10 u'yeahyeah' | |
| 11 ] | |
| OLD | NEW |