Remove unnecessary os.path.abspath call, delete requirements.txt

This commit is contained in:
Xevion
2022-05-10 00:47:32 -05:00
parent fd107b0d60
commit 6f26b80ebf
2 changed files with 1 additions and 7 deletions

View File

@@ -1,6 +0,0 @@
Flask~=1.1.2
click~=7.1.2
enlighten~=1.6.2
requests~=2.24.0
bs4~=0.0.1
beautifulsoup4~=4.9.1

View File

@@ -24,7 +24,7 @@ TRUTH_DIR = os.path.join(CUR_DIR, 'truth')
CHARACTERS_DIR = os.path.join(CUR_DIR, 'characters')
EPISODES_DIR = os.path.join(TRUTH_DIR, 'episodes')
COMPILE_DIR = os.path.join(CUR_DIR, 'compile')
RAW_DIR = os.path.abspath(os.path.join(CUR_DIR, 'raw'))
RAW_DIR = os.path.join(CUR_DIR, 'raw')
RAW_FILES = os.listdir(RAW_DIR)