Skip to content

Commit

Permalink
linting
Browse files Browse the repository at this point in the history
  • Loading branch information
ochiu committed Dec 5, 2023
1 parent 2348a4b commit e9ba3b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jobs/notebook-report/notebookreport.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ def process_notebooks(notebookdirectory: str, data_dir: str):

def execute_notebook(notebookdirectory: str, data_dir: str, partner_code: str = None):
"""Execute notebook and send emails."""
parameters = dict(partner_code=partner_code) if partner_code else None
parameters = {'partner_code': partner_code} if partner_code else None

for file in findfiles(notebookdirectory, '*.ipynb'):
try:
Expand Down

0 comments on commit e9ba3b0

Please sign in to comment.