mirror of
https://github.com/coolsnowwolf/luci.git
synced 2025-05-02 23:41:08 +08:00
9 lines
181 B
Python
9 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
|
|
|