Skip to content

Commit

Permalink
fix flake8
Browse files Browse the repository at this point in the history
Signed-off-by: YunLiu <[email protected]>
  • Loading branch information
KumoLiu committed Jan 17, 2024
1 parent d9badbb commit 01673c4
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions deployment/bentoml/mednist_classifier_bentoml.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -94,12 +94,12 @@
}
],
"source": [
"from bentoml.utils import cached_property # noqa: E401\n",
"from bentoml.adapters import FileInput, JsonOutput # noqa: E401\n",
"from bentoml.frameworks.pytorch import PytorchModelArtifact # noqa: E401\n",
"import bentoml # noqa: E401\n",
"from PIL import Image # noqa: E401\n",
"from typing import BinaryIO, List # noqa: E401\n",
"from bentoml.utils import cached_property # noqa: F401\n",
"from bentoml.adapters import FileInput, JsonOutput # noqa: F401\n",
"from bentoml.frameworks.pytorch import PytorchModelArtifact # noqa: F401\n",
"import bentoml # noqa: F401\n",
"from PIL import Image # noqa: F401\n",
"from typing import BinaryIO, List # noqa: F401\n",
"import os\n",
"import shutil\n",
"import tempfile\n",
Expand Down

0 comments on commit 01673c4

Please sign in to comment.