aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/build.py
diff options
context:
space:
mode:
authorDylan Baker <dylan@pnwbakers.com>2020-04-30 13:39:36 -0700
committerDylan Baker <dylan@pnwbakers.com>2020-04-30 13:39:36 -0700
commitc2a4474b582fb98bd81c0babd1056eeb51d0f1ce (patch)
treed5bdcb184a2d3a5c31fea47f1141f3da4bc0cac9 /mesonbuild/build.py
parent793c3d706e81ff639db1a1314b773b0cfdebd7db (diff)
downloadmeson-c2a4474b582fb98bd81c0babd1056eeb51d0f1ce.zip
meson-c2a4474b582fb98bd81c0babd1056eeb51d0f1ce.tar.gz
meson-c2a4474b582fb98bd81c0babd1056eeb51d0f1ce.tar.bz2
build: cleanup and sort imports
Diffstat (limited to 'mesonbuild/build.py')
-rw-r--r--mesonbuild/build.py8
1 files changed, 5 insertions, 3 deletions
diff --git a/mesonbuild/build.py b/mesonbuild/build.py
index c200261..b95988e 100644
--- a/mesonbuild/build.py
+++ b/mesonbuild/build.py
@@ -12,12 +12,14 @@
# See the License for the specific language governing permissions and
# limitations under the License.
-import copy, os, re
from collections import OrderedDict, defaultdict
-import itertools, pathlib
+from functools import lru_cache
+import copy
import hashlib
+import itertools, pathlib
+import os
import pickle
-from functools import lru_cache
+import re
import typing as T
from . import environment