We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 153be1f commit 171f9bfCopy full SHA for 171f9bf
build/BUILD.py
@@ -9,7 +9,7 @@
9
split_on_tabs = re.compile(b'\t+').split
10
11
def main():
12
- os.chdir(os.path.dirname(__file__))
+ os.chdir(os.path.dirname(os.path.abspath(__file__)))
13
if not os.path.isdir('../data'):
14
os.makedirs('../data')
15
build/split.py
@@ -27,7 +27,7 @@ def question_cell(text):
27
28
29
session_cells = {n: [] for n in range(1, 6+1)}
30
- f = open(os.path.dirname(__file__) + '/../All.ipynb')
+ f = open(os.path.dirname(os.path.abspath(__file__)) + '/../All.ipynb')
31
j = json.load(f)
32
cells = j['cells']
33
for cell in cells:
0 commit comments