Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
Signed-off-by: shalberd <21118431+shalberd@users.noreply.github.com>
  • Loading branch information
shalberd committed Aug 16, 2024
1 parent 401c534 commit 0fa71b1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion elyra/airflow/bootstrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ def execute(self) -> None:
kernel_name=kernel_name,
log_output=True,
stdout_file=sys.stdout,
stderr_file=sys.stderr
stderr_file=sys.stderr,
)
duration = time.time() - t0
OpUtil.log_operation_info("notebook execution completed", duration)
Expand Down
2 changes: 1 addition & 1 deletion elyra/kfp/bootstrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -389,7 +389,7 @@ def execute(self) -> None:
log_output=True,
stdout_file=sys.stdout,
stderr_file=sys.stderr,
**kwargs
**kwargs,
)
duration = time.time() - t0
OpUtil.log_operation_info("notebook execution completed", duration)
Expand Down

0 comments on commit 0fa71b1

Please sign in to comment.