Skip to content

Commit

Permalink
Black
Browse files Browse the repository at this point in the history
  • Loading branch information
JackUrb committed Sep 19, 2023
1 parent 82c9812 commit e006eb5
Showing 1 changed file with 2 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,7 @@ def main(args: NewProjectArgs):
collaborators = args.collaborators
if collaborators is None:
collaborators = []
COLLAB_INPUT = (
"Provide an email for a collaborator. Leave, blank when done.\n>> "
)
COLLAB_INPUT = "Provide an email for a collaborator. Leave, blank when done.\n>> "
while len(next_collaborator := input(COLLAB_INPUT).strip()) > 0:
collaborators.append(next_collaborator)

Expand All @@ -83,9 +81,7 @@ def main(args: NewProjectArgs):

print(f"Created workspace for this research group: {workspace.id}")
print(f"Adding Collaborators")
res = client.Invitations.create(
workspace_id=workspace.id, collaborators=collaborators
)
res = client.Invitations.create(workspace_id=workspace.id, collaborators=collaborators)
print(f"Create result: {res}")


Expand Down

0 comments on commit e006eb5

Please sign in to comment.