mirror of
https://github.com/veops/cmdb.git
synced 2025-08-08 15:07:55 +08:00
10 lines
164 B
Python
10 lines
164 B
Python
# -*- coding:utf-8 -*-
|
|
|
|
|
|
def convert_to_list(v):
|
|
if isinstance(v, list):
|
|
return v
|
|
if isinstance(v, tuple):
|
|
return list(v)
|
|
return [v, ]
|