Completed
Pull Request — master (#1073)
by Lasse
01:56
created

something()   A

Complexity

Conditions 1

Size

Total Lines 2

Duplication

Lines 0
Ratio 0 %
Metric Value
cc 1
dl 0
loc 2
rs 10
1
import sys
2
import platform  # Unused import
3
4
print(sys.path)
5
6
7
class Something:
8
    def method_without_self():
9
            pass
10
11
    def something(self):
12
        pass
13