mirror of
https://github.com/meisnate12/Plex-Meta-Manager
synced 2024-11-10 06:54:21 +00:00
[8] allow dict lists
This commit is contained in:
parent
18e7c84469
commit
04574c3548
2 changed files with 2 additions and 2 deletions
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
|||
1.16.1-develop7
|
||||
1.16.1-develop8
|
||||
|
|
|
@ -111,7 +111,7 @@ def get_list(data, lower=False, upper=False, split=True, int_list=False):
|
|||
elif int_list is True:
|
||||
try: return [int(str(d).strip()) for d in list_data]
|
||||
except ValueError: return []
|
||||
else: return [str(d).strip() for d in list_data]
|
||||
else: return [d if isinstance(d, dict) else str(d).strip() for d in list_data]
|
||||
|
||||
def get_int_list(data, id_type):
|
||||
int_values = []
|
||||
|
|
Loading…
Reference in a new issue