From 8bd918f2e8a5609cb14a40527ee03372145f218f Mon Sep 17 00:00:00 2001 From: Taketoshi Fujiwara Date: Tue, 28 Apr 2020 11:29:46 +0900 Subject: [PATCH] Remove unused global variables in environment module --- blueoil/environment.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/blueoil/environment.py b/blueoil/environment.py index 4195b6f89..e6400c622 100644 --- a/blueoil/environment.py +++ b/blueoil/environment.py @@ -13,13 +13,9 @@ # See the License for the specific language governing permissions and # limitations under the License. # ============================================================================= -import os.path - -TMP_DIR = "tmp" -LOG_DIR = os.path.join(TMP_DIR, "log") +import os default_data_dir = "dataset" -# DATA_DIR = os.getenv("DATA_DIR", default_data_dir) DATA_DIR = os.getenv("DATA_DIR", os.path.join(os.getcwd(), default_data_dir)) default_output_dir = "saved"