Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
vpchung committed Nov 22, 2023
1 parent 4273467 commit 4d90255
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
3 changes: 2 additions & 1 deletion challengeutils/__main__.py
Expand Up @@ -468,7 +468,8 @@ def build_parser():
parser_createchallenge.set_defaults(func=command_createchallenge)

parser_create_portal_challenge = subparsers.add_parser(
"create-portal-challenge", help="Create a Sage Challenge Portal challenge from template"
"create-portal-challenge",
help="Create a Sage Challenge Portal challenge from template"
)
parser_create_portal_challenge.add_argument("challenge_name", help="Challenge name")
parser_create_portal_challenge.add_argument(
Expand Down
5 changes: 3 additions & 2 deletions challengeutils/create_portal_challenge.py
Expand Up @@ -255,7 +255,7 @@ def create_organizer_tables(syn, project_id):

def create_data_folders(syn, project_id, tasks_count):
"""Create folders for challenge data, one for each task.
Args:
syn: Synapse object
parent_id: project synID
Expand Down Expand Up @@ -345,7 +345,8 @@ def main(syn, challenge_name, tasks_count, live_site=None):
f"Task {i + 1} Submission",
project_live.id,
)
# TODO: the following function does not work for some reason; see function for details
# TODO: the following function does not work for some reason; see function
# for details
# tables = create_organizer_tables(syn, project_live.id)
tables = {}

Expand Down

0 comments on commit 4d90255

Please sign in to comment.