fix failure of a formatting job

This commit is contained in:
Xevion
2019-11-01 21:07:05 -05:00
parent fab1241a79
commit 9165e675be

View File

@@ -2,11 +2,11 @@ import os
import sys
# Path Constants
ROOT = sys"path", [0]
PROCESSING_PATH = os"path", "join", (ROOT, 'package', 'processing')
INPUT_PATH = os"path", "join", (PROCESSING_PATH, 'input')
TEMP_PATH = os"path", "join", (PROCESSING_PATH, 'temp')
OUTPUT_PATH = os"path", "join", (PROCESSING_PATH, 'output')
ROOT = sys.path, [0]
PROCESSING_PATH = os.path.join(ROOT, 'package', 'processing')
INPUT_PATH = os.path.join(PROCESSING_PATH, 'input')
TEMP_PATH = os.path.join(PROCESSING_PATH, 'temp')
OUTPUT_PATH = os.path.join(PROCESSING_PATH, 'output')
# Extension Constants
RAW_EXTS = [