13 lines
263 B
Python
13 lines
263 B
Python
|
from datetime import datetime
|
||
|
|
||
|
def not_during_the_night(func):
|
||
|
def wrapper():
|
||
|
if 7 <= datetime.now().hour < 22:
|
||
|
func()
|
||
|
else:
|
||
|
pass # Hush, the neighbors are asleep
|
||
|
return wrapper
|
||
|
|
||
|
def say_whee():
|
||
|
print("Whee!")
|