diff options
author | BonfaceKilz | 2020-11-03 19:14:24 +0300 |
---|---|---|
committer | BonfaceKilz | 2020-11-03 19:14:24 +0300 |
commit | 390dcc3c46495a8e316df36ceb57dae2089456da (patch) | |
tree | 63207df0cb0f8215acda08f6e1acdfa628f7e59a | |
parent | f4a3652ee5b8087f551553df9498d5f00e169a86 (diff) | |
download | genenetwork2-390dcc3c46495a8e316df36ceb57dae2089456da.tar.gz |
Remove encoding header for file
In python3 the default encoding is utf-8 so this is redundant.
-rw-r--r-- | wqflask/tests/unit/utility/test_hmac.py | 1 | ||||
-rw-r--r-- | wqflask/wqflask/views.py | 4 |
2 files changed, 1 insertions, 4 deletions
diff --git a/wqflask/tests/unit/utility/test_hmac.py b/wqflask/tests/unit/utility/test_hmac.py index 4e3652f8..13d6261d 100644 --- a/wqflask/tests/unit/utility/test_hmac.py +++ b/wqflask/tests/unit/utility/test_hmac.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- """Test hmac utility functions""" import unittest diff --git a/wqflask/wqflask/views.py b/wqflask/wqflask/views.py index 08673f79..b7c4d142 100644 --- a/wqflask/wqflask/views.py +++ b/wqflask/wqflask/views.py @@ -1,6 +1,4 @@ -# -*- coding: utf-8 -*- -# -# Main routing table for GN2 +"""Main routing table for GN2""" import traceback # for error page import os # for error gifs |