forked from stove/dataset
6 lines
77 B
Python
6 lines
77 B
Python
from uuid import uuid4 as _uuid4
|
|
|
|
|
|
def gen_uuid():
|
|
return str(_uuid4())
|
|
|