Skip to content

Commit

Permalink
fix linting errors
Browse files Browse the repository at this point in the history
  • Loading branch information
BrendanSchell committed Sep 27, 2024
1 parent f5b5b7b commit e3600b6
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions notebooks/scenarios/bigquery/040-do-review-requests.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -231,10 +231,11 @@
" for k, v in job_emails.items()\n",
"}\n",
"expected_rejected_email_counts = Counter(\n",
" map(lambda x: x.user_email, submitted_jobs_data_should_fail)\n",
" job.user_email for job in submitted_jobs_data_should_fail\n",
")\n",
"\n",
"expected_approved_email_counts = Counter(\n",
" map(lambda x: x.user_email, submitted_jobs_data_should_succeed)\n",
" job.user_email for job in submitted_jobs_data_should_succeed\n",
")"
]
},
Expand All @@ -244,7 +245,8 @@
"metadata": {},
"outputs": [],
"source": [
"# if user's email notifications are enabled, should have received either approved or rejected email\n",
"# if user's email notifications are enabled,\n",
"# should have received either approved or rejected email\n",
"for user_email, new_count in new_n_emails_per_job_user.items():\n",
" user = [u for u in users if u.email == user_email][0]\n",
" old_count = n_emails_per_job_user[user_email]\n",
Expand Down

0 comments on commit e3600b6

Please sign in to comment.