8 lines
181 B
Python
8 lines
181 B
Python
def getKeys(key_list):
|
|
return key_list
|
|
#return key_list + ['plan'] # append the column name 'plan'
|
|
|
|
def isTurnOn(row):
|
|
return True
|
|
#return row['plan'] == 'B' # then judge here
|
|
|