Failed Conditions
Pull Request — master (#1093)
by Lasse
01:45
created

bears.tests.python.test_files.Something   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 6
Duplicated Lines 0 %
Metric Value
dl 0
loc 6
rs 10
wmc 2

2 Methods

Rating   Name   Duplication   Size   Complexity  
A something() 0 2 1
A method_without_self() 0 2 1
1
import sys
2
import platform  # Unused import
0 ignored issues
show
Unused Code introduced by
The import platform seems to be unused.
Loading history...
3
4
print(sys.path)
5
6
7
class Something:
8
    def method_without_self():
9
            pass
0 ignored issues
show
Coding Style introduced by
The indentation here looks off. 8 spaces were expected, but 12 were found.
Loading history...
10
11
    def something(self):
12
        pass
13