Skip to content

Commit db30f65

Browse files
committed
Fix default pipeline paths
1 parent 5daff03 commit db30f65

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

preprocessing/pipeline.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ def process_project(i, project):
153153
parser.add_argument('--projects_file',
154154
help='json file containing GitHub projects',
155155
type=str,
156-
default='./resources/mypy-dependents-by-stars.json')
156+
default='../resources/mypy-dependents-by-stars.json')
157157
parser.add_argument('--limit',
158158
help='limit the number of projects for which the pipeline should run',
159159
type=int,
@@ -165,7 +165,7 @@ def process_project(i, project):
165165
parser.add_argument("--output_dir",
166166
help="output dir for the pipeline",
167167
type=str,
168-
default=os.path.join('./output', str(int(time.time()))))
168+
default=os.path.join('../output', str(int(time.time()))))
169169
parser.add_argument('--start',
170170
help='start position within projects list',
171171
type=int,

0 commit comments

Comments
 (0)