mirror of
https://github.com/kellyjonbrazil/jc.git
synced 2025-08-06 22:32:54 +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
|
||||
|
||||
|
||||
def _get_item(list, index, default=None):
|
||||
if index < len(list):
|
||||
return list[index]
|
||||
def _get_item(my_list, index, default=None):
|
||||
if index < len(my_list):
|
||||
return my_list[index]
|
||||
|
||||
return default
|
||||
|
||||
|
Reference in New Issue
Block a user