Commit 3a6b413e authored by 高雅喆's avatar 高雅喆

change set to list

parent 7c3cd023
...@@ -19,7 +19,7 @@ def con_sql(sql): ...@@ -19,7 +19,7 @@ def con_sql(sql):
return result return result
def set_join(lst): def set_join(lst):
return ','.join([str(i) for i in set(lst)]) return ','.join([str(i) for i in list(lst)])
def main(): def main():
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment