mirror of
https://github.com/opendatalab/MinerU.git
synced 2026-04-01 13:38:33 +07:00
6 lines
143 B
Python
6 lines
143 B
Python
def dict_to_list(input_dict):
|
|
items_list = []
|
|
for _, item in input_dict.items():
|
|
items_list.append(item)
|
|
return items_list
|