mirror of https://github.com/docker/docker-py.git
Get rid of star import
Signed-off-by: Aarni Koskela <akx@iki.fi>
This commit is contained in:
parent
9313536601
commit
fad792bfc7
|
@ -1,4 +1,8 @@
|
||||||
|
|
||||||
from .store import Store
|
from .store import Store
|
||||||
from .errors import StoreError, CredentialsNotFound
|
from .errors import StoreError, CredentialsNotFound
|
||||||
from .constants import * # noqa: F403
|
from .constants import (
|
||||||
|
DEFAULT_LINUX_STORE,
|
||||||
|
DEFAULT_OSX_STORE,
|
||||||
|
DEFAULT_WIN32_STORE,
|
||||||
|
PROGRAM_PREFIX,
|
||||||
|
)
|
||||||
|
|
Loading…
Reference in New Issue