mirror of
https://github.com/kellyjonbrazil/jc.git
synced 2025-08-08 22:36:48 +02:00
change variable name from list to my_list
This commit is contained in:
@ -144,9 +144,9 @@ def _process(proc_data):
|
|||||||
return proc_data
|
return proc_data
|
||||||
|
|
||||||
|
|
||||||
def _get_item(list, index, default=None):
|
def _get_item(my_list, index, default=None):
|
||||||
if index < len(list):
|
if index < len(my_list):
|
||||||
return list[index]
|
return my_list[index]
|
||||||
|
|
||||||
return default
|
return default
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user