mirror of
https://github.com/kellyjonbrazil/jc.git
synced 2026-04-26 21:04:16 +02:00
change variable name from list to my_list
This commit is contained in:
+3
-3
@@ -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