aboutsummaryrefslogtreecommitdiff
path: root/actions/time.py
blob: a894270eaab1e24da9300a4e145b76c7d132e4c5 (plain)
1
2
3
4
5
6
7
8
9
from datetime import datetime


# noinspection PyUnresolvedReferences
def _action_time(_input):
    now = datetime.now()
    time = now.strftime("%Hh%M")
    say(f"Il est {time}")
    return