diff options
author | Dylan Baker <dylan@pnwbakers.com> | 2020-04-30 13:39:36 -0700 |
---|---|---|
committer | Dylan Baker <dylan@pnwbakers.com> | 2020-04-30 13:39:36 -0700 |
commit | c2a4474b582fb98bd81c0babd1056eeb51d0f1ce (patch) | |
tree | d5bdcb184a2d3a5c31fea47f1141f3da4bc0cac9 /mesonbuild/build.py | |
parent | 793c3d706e81ff639db1a1314b773b0cfdebd7db (diff) | |
download | meson-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.py | 8 |
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 |