Make base imports explicit.

This commit is contained in:
Elliott Sales de Andrade 2017-04-15 17:42:25 -04:00
parent 8731e00ada
commit e922a6f6f0
1 changed files with 3 additions and 1 deletions

View File

@ -12,7 +12,9 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
from .base import * from .base import ( # noqa: F401
Dependency, DependencyException, DependencyMethods, ExternalProgram, ExternalLibrary, ExtraFrameworkDependency,
InternalDependency, PkgConfigDependency, find_external_dependency, get_dep_identifier, packages)
from .dev import GMockDependency, GTestDependency, LLVMDependency, ValgrindDependency from .dev import GMockDependency, GTestDependency, LLVMDependency, ValgrindDependency
from .misc import BoostDependency, Python3Dependency, ThreadDependency from .misc import BoostDependency, Python3Dependency, ThreadDependency
from .platform import AppleFrameworks from .platform import AppleFrameworks