Left: | ||
Right: |
OLD | NEW |
---|---|
1 def noop(): | 1 def noop(): |
2 pass | 2 pass |
3 | 3 |
4 | 4 |
5 def superfluos_pass(): | 5 def superfluos_pass(): |
6 noop() | 6 noop() |
7 # A204 | 7 # A204 |
8 pass | 8 pass |
9 | 9 |
10 | 10 |
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
58 # A204 | 58 # A204 |
59 pass | 59 pass |
60 except: | 60 except: |
61 noop() | 61 noop() |
62 # A204 | 62 # A204 |
63 pass | 63 pass |
64 finally: | 64 finally: |
65 noop() | 65 noop() |
66 # A204 | 66 # A204 |
67 pass | 67 pass |
OLD | NEW |