diff options
author | BonfaceKilz | 2020-08-26 19:12:33 +0300 |
---|---|---|
committer | BonfaceKilz | 2020-08-26 19:12:33 +0300 |
commit | 303e4b71c2172da5be19c84d4be5a062329ac013 (patch) | |
tree | 130496e7b4c6fe2157c14abd50be941823ed40b9 /wqflask/utility/after.py | |
parent | 7717f0d3d4802d115a8b5ace4d379864ba5b1188 (diff) | |
download | genenetwork2-303e4b71c2172da5be19c84d4be5a062329ac013.tar.gz |
Remove "from __future__ import new_feature" statements
See: <https://docs.python.org/2/library/2to3.html#2to3fixer-future>
Diffstat (limited to 'wqflask/utility/after.py')
-rw-r--r-- | wqflask/utility/after.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/wqflask/utility/after.py b/wqflask/utility/after.py index b628a0a4..06091ecb 100644 --- a/wqflask/utility/after.py +++ b/wqflask/utility/after.py @@ -1,5 +1,3 @@ -from __future__ import print_function, division, absolute_import - """ See: http://flask.pocoo.org/docs/patterns/deferredcallbacks/#deferred-callbacks @@ -13,4 +11,4 @@ def after_this_request(f): if not hasattr(g, 'after_request_callbacks'): g.after_request_callbacks = [] g.after_request_callbacks.append(f) - return f
\ No newline at end of file + return f |