diff options
author | BonfaceKilz | 2021-10-28 10:57:17 +0300 |
---|---|---|
committer | BonfaceKilz | 2021-10-28 11:10:21 +0300 |
commit | 230184bf1484ed672bf66c29110bcb47e556f72f (patch) | |
tree | 6538e0231272eb9cf47fe523c41f0a6d821e3382 /wqflask/utility/hmac.py | |
parent | 67d71753259e3466b5672c759f22a105c8b653ef (diff) | |
download | genenetwork2-230184bf1484ed672bf66c29110bcb47e556f72f.tar.gz |
Remove the use of '@deprecated'
This causes noisy logging.
Diffstat (limited to 'wqflask/utility/hmac.py')
-rw-r--r-- | wqflask/utility/hmac.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/wqflask/utility/hmac.py b/wqflask/utility/hmac.py index d6e515ed..29891677 100644 --- a/wqflask/utility/hmac.py +++ b/wqflask/utility/hmac.py @@ -1,14 +1,11 @@ import hmac import hashlib -from deprecated import deprecated from flask import url_for from wqflask import app -@deprecated("This function leads to circular imports. " - "If possible use wqflask.decorators.create_hmac instead.") def hmac_creation(stringy): """Helper function to create the actual hmac""" |