GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Completed
Push — master ( d75a64...aeff40 )
by Oana
22:51
created

DefaultConfig.processWorker()   A

Complexity

Conditions 1

Size

Total Lines 2
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 1
CRAP Score 1.125

Importance

Changes 0
Metric Value
eloc 2
dl 0
loc 2
ccs 1
cts 2
cp 0.5
rs 10
c 0
b 0
f 0
cc 1
nop 2
crap 1.125
1 1
class DefaultConfig():
2
3 1
	name = '' # collection name
4 1
	inputColumns = [] # inputColumns to use
5 1
	outputColumns = [] # outputColumns to use
6 1
	customPlatformColumns = []
7 1
	open_ended_task = True
8 1
	annotation_vector = []
9
10 1
	units = [] 	# units to use
11 1
	workers = [] # workers to use
12 1
	jobs = [] # jobs to use
13
14 1
	csv_file_separator = ','
15 1
	annotation_separator = ','
16
17 1
	def processUnit(self, unit):
18
		return True
19
20 1
	def processWorker(self, worker):
21
		return True
22
23 1
	def processJudgments(self, judgments):
24
		return judgments
25
26
	def processResults(self, results, config=[]):
27
		return results