diff options
author | Daniel Mensinger <daniel@mensinger-ka.de> | 2021-05-31 19:46:09 +0200 |
---|---|---|
committer | Dylan Baker <dylan@pnwbakers.com> | 2021-06-03 10:23:27 -0700 |
commit | 95b70bcb97afa9177645e4926afdf3792fb73eb5 (patch) | |
tree | dea7c5ec83a7b2a90b533f58d50ad88b8961bc8f /mesonbuild/modules/qt.py | |
parent | 201dc6422683858f9656c8b572530237c810feef (diff) | |
download | meson-95b70bcb97afa9177645e4926afdf3792fb73eb5.zip meson-95b70bcb97afa9177645e4926afdf3792fb73eb5.tar.gz meson-95b70bcb97afa9177645e4926afdf3792fb73eb5.tar.bz2 |
deps: Split dependencies.base
Split the Factory and dependency classes out
of the base.py script to improve maintainability.
Diffstat (limited to 'mesonbuild/modules/qt.py')
-rw-r--r-- | mesonbuild/modules/qt.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/modules/qt.py b/mesonbuild/modules/qt.py index dd69611..aecfe50 100644 --- a/mesonbuild/modules/qt.py +++ b/mesonbuild/modules/qt.py @@ -12,7 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -from mesonbuild.dependencies.base import find_external_dependency +from mesonbuild.dependencies import find_external_dependency import os import shutil import typing as T |