Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
anayeaye committed Aug 14, 2024
1 parent 35afe1a commit 30411dc
Showing 1 changed file with 10 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -80,11 +80,11 @@
"STAGING_USERPOOL_ID = \"us-west-2_0G3VRilt1\"\n",
"STAGING_IDENTITY_POOL_ID = \"us-west-2:ad6647b6-b410-4e73-8205-28a066c290fb\"\n",
"\n",
"# Obtain a token from the cognito client \n",
"# Obtain a token from the cognito client\n",
"client = CognitoClient(\n",
" client_id = STAGING_CLIENT_ID,\n",
" user_pool_id = STAGING_USERPOOL_ID,\n",
" identity_pool_id = STAGING_IDENTITY_POOL_ID\n",
" client_id=STAGING_CLIENT_ID,\n",
" user_pool_id=STAGING_USERPOOL_ID,\n",
" identity_pool_id=STAGING_IDENTITY_POOL_ID,\n",
")\n",
"_ = client.login()\n",
"\n",
Expand Down Expand Up @@ -345,7 +345,9 @@
" \"content-type\": \"application/json\",\n",
" \"accept\": \"application/json\",\n",
"}\n",
"response = requests.post((STAGING_WORKFLOWS_API + \"dataset/validate\"), json=dataset, headers=headers)\n",
"response = requests.post(\n",
" (STAGING_WORKFLOWS_API + \"dataset/validate\"), json=dataset, headers=headers\n",
")\n",
"response.raise_for_status()\n",
"print(response.text)"
]
Expand Down Expand Up @@ -382,7 +384,9 @@
}
],
"source": [
"response = requests.post((STAGING_WORKFLOWS_API + \"dataset/publish\"), json=dataset, headers=headers)\n",
"response = requests.post(\n",
" (STAGING_WORKFLOWS_API + \"dataset/publish\"), json=dataset, headers=headers\n",
")\n",
"response.raise_for_status()\n",
"print(response.text)"
]
Expand Down

0 comments on commit 30411dc

Please sign in to comment.