From 32d4ddbe8077bfb1b277a6b40aaf8de3949bdd7e Mon Sep 17 00:00:00 2001 From: Kashirigi Date: Fri, 16 Aug 2019 15:11:29 -0700 Subject: [PATCH] Added link to practical example --- Python/Decorators/decoCompleteExample.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Python/Decorators/decoCompleteExample.py b/Python/Decorators/decoCompleteExample.py index bf50990..2f89198 100644 --- a/Python/Decorators/decoCompleteExample.py +++ b/Python/Decorators/decoCompleteExample.py @@ -1,4 +1,7 @@ #https://www.datacamp.com/community/tutorials/decorators-python +#A an example of how this can be actually useful is here: +#https://www.codementor.io/sheena/advanced-use-python-decorators-class-function-du107nxsv + def basicdeco(func): '''A basic wrapper that just adds things '''