From 40e3577a65ac688814eff1239fa38b86aad19ee8 Mon Sep 17 00:00:00 2001 From: Dylan Baker Date: Thu, 1 Oct 2020 13:02:08 -0700 Subject: split program related classes and functions out of dependencies Dependencies is already a large and complicated package without adding programs to the list. This also allows us to untangle a bit of spaghetti that we have. --- mesonbuild/modules/dlang.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'mesonbuild/modules/dlang.py') diff --git a/mesonbuild/modules/dlang.py b/mesonbuild/modules/dlang.py index 55ff304..f2633cb 100644 --- a/mesonbuild/modules/dlang.py +++ b/mesonbuild/modules/dlang.py @@ -26,10 +26,8 @@ from ..mesonlib import ( Popen_safe, MesonException ) -from ..dependencies.base import ( - ExternalProgram, DubDependency -) - +from ..dependencies.base import DubDependency +from ..programs import ExternalProgram from ..interpreter import DependencyHolder class DlangModule(ExtensionModule): -- cgit v1.1