decorator - Py ii pre -pie Decorator
This commit is contained in:
parent
228eef0258
commit
11acf9073d
|
@ -0,0 +1,12 @@
|
|||
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!")
|
Loading…
Reference in New Issue