Get rid of star import

Signed-off-by: Aarni Koskela <akx@iki.fi>
This commit is contained in:
Aarni Koskela 2023-05-11 15:50:13 +03:00
parent 9313536601
commit fad792bfc7
1 changed files with 6 additions and 2 deletions

View File

@ -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,
)