Advertisement
Guest User

Untitled

a guest
Aug 21st, 2019
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. def main_fuction(func):
  2. def wrapper_fuction():
  3. return func()
  4. return wrapper_fuction
  5.  
  6. @main_fuction
  7. def message_fuc():
  8. print('this worked')
  9.  
  10. #however adding this works
  11. x = main_fuction(message_fuc)
  12. x()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement