- Split custom sources into helper functions - Add proper logging and handling - Fix LoadError embed messsage
12 lines
154 B
Python
12 lines
154 B
Python
import datetime
|
|
|
|
now = datetime.datetime.now(datetime.timezone.utc).strftime(
|
|
"%Y-%m-%d %H:%M:%S"
|
|
)
|
|
|
|
import time
|
|
|
|
print(now)
|
|
time.sleep(2)
|
|
print(now)
|