diff options
author | V3n3RiX <venerix@redcorelinux.org> | 2020-08-18 11:18:29 +0100 |
---|---|---|
committer | V3n3RiX <venerix@redcorelinux.org> | 2020-08-18 11:18:29 +0100 |
commit | f28b67f3d6910f71e20da86367205f3c3660ff72 (patch) | |
tree | e911759abc66c51e8b4eb7d55ab3146bf0b45c3b /src/backend/__init__.py | |
parent | ef7479ddce20795821190197622df79ca4259f64 (diff) |
fix imports in dbsearch (no need to import the whole thing), rename it so we have something uniform
Diffstat (limited to 'src/backend/__init__.py')
-rw-r--r-- | src/backend/__init__.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/__init__.py b/src/backend/__init__.py index c13a513..59c927c 100644 --- a/src/backend/__init__.py +++ b/src/backend/__init__.py @@ -6,7 +6,6 @@ from .cache import * from .check import * from .csvfiles import * from .database import * -from .dbsearch import * from .filesystem import * from .installbinary import * from .installebuild import * @@ -14,7 +13,8 @@ from .killportage import * from .metadata import * from .mirror import * from .rescue import * -from .search import * +from .searchbinary import * +from .searchebuild import * from .setjobs import * from .setprofile import * from .solvedeps import * |