diff options
author | BonfaceKilz | 2020-07-21 21:53:30 +0300 |
---|---|---|
committer | BonfaceKilz | 2020-07-24 03:48:04 +0300 |
commit | 98035fccfd7960e6992e1e47afc32b56d54ff074 (patch) | |
tree | b77ecf0cc954dea50fd460b9534acfa4e0b91abc | |
parent | b8e17aee9000943e0fd379b5ef006d76314733e4 (diff) | |
download | genenetwork2-98035fccfd7960e6992e1e47afc32b56d54ff074.tar.gz |
Revert "Add work-around for failed imports in unittest"
This reverts commit d5e87fa6fe7546b46790f512d984a5501223082f.
-rw-r--r-- | wqflask/utility/tools.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/wqflask/utility/tools.py b/wqflask/utility/tools.py index 37f9d8fe..77db5d53 100644 --- a/wqflask/utility/tools.py +++ b/wqflask/utility/tools.py @@ -5,10 +5,7 @@ import os import sys import json -try: - from wqflask import app -except ImportError: - from wqflask.wqflask import app +from wqflask import app # Use the standard logger here to avoid a circular dependency import logging |