Skip to content

Commit

Permalink
Merge pull request #145 from rstudio/star-imports
Browse files Browse the repository at this point in the history
remove stars for explicit imports
  • Loading branch information
isabelizimm authored Jan 18, 2023
2 parents 17c3fd4 + a32dd67 commit bcbab9c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions vetiver/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@
# Change to import.metadata when minimum python>=3.8
from importlib_metadata import version as _version

from .prototype import * # noqa
from .prototype import vetiver_create_prototype, vetiver_create_ptype # noqa
from .vetiver_model import VetiverModel # noqa
from .server import VetiverAPI, vetiver_endpoint, predict # noqa
from .mock import get_mock_data, get_mock_model # noqa
from .pin_read_write import vetiver_pin_write # noqa
from .attach_pkgs import * # noqa
from .meta import * # noqa
from .attach_pkgs import load_pkgs # noqa
from .meta import VetiverMeta # noqa
from .write_docker import write_docker, prepare_docker # noqa
from .write_fastapi import write_app, vetiver_write_app # noqa
from .handlers.base import BaseHandler, create_handler, InvalidModelError # noqa
Expand Down

0 comments on commit bcbab9c

Please sign in to comment.