Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
peridotml committed May 9, 2023
1 parent e632803 commit 32ef6dd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import sys
import tempfile
import typing
from typing import Any, Dict
from typing import Any

import nbformat
import papermill as pm
Expand Down
4 changes: 2 additions & 2 deletions plugins/flytekit-papermill/tests/test_task.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from kubernetes.client import V1Container, V1PodSpec

import flytekit
from flytekit import StructuredDataset, kwtypes, task, workflow
from flytekit import StructuredDataset, kwtypes, task
from flytekit.configuration import Image, ImageConfig
from flytekit.types.directory import FlyteDirectory
from flytekit.types.file import FlyteFile, PythonNotebook
Expand Down Expand Up @@ -171,4 +171,4 @@ def create_sd() -> StructuredDataset:
outputs=kwtypes(success=bool),
)
success, out, render = nb_types.execute(ff=ff, fd=fd, sd=sd)
assert success == True, "Notebook execution failed"
assert success is True, "Notebook execution failed"

0 comments on commit 32ef6dd

Please sign in to comment.