5 lines
112 B
Python
5 lines
112 B
Python
from datetime import datetime
|
|
|
|
|
|
def unbound_serial() -> str:
|
|
return datetime.now().strftime('%Y%m%d%H%M%S')
|