Skip to content

Commit

Permalink
Automated commit -> added return statement to parser in jatosapi
Browse files Browse the repository at this point in the history
  • Loading branch information
miloswrath committed Sep 23, 2024
1 parent 422ff19 commit 352f26c
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions jatosAPI.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ def parse_cmd():
import argparse
parser = argparse.ArgumentParser(description='API File to Pull Subject Data from Jatos')
parser.add_argument('-t', type=str, help='TEASE')
parser.add_argument('-a', type=str, help="toke")
return parser.parse_args()


Expand Down Expand Up @@ -242,6 +243,7 @@ def push(toke):
def main():
args = parse_cmd()
tease = args.t
toke = args.a
study_result_ids = get_met(tease)
get_data(study_result_ids, tease)
convert_beh()
Expand All @@ -251,8 +253,7 @@ def main():
if file.endswith(".txt"):
txt_files.append(os.path.join(root, file))
move_txt(txt_files)
push()

push(toke)



Expand Down

0 comments on commit 352f26c

Please sign in to comment.