Skip to content

Commit

Permalink
Remove unused imports.
Browse files Browse the repository at this point in the history
  • Loading branch information
QuLogic committed May 17, 2017
1 parent abd12b6 commit 65b1d33
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 9 deletions.
2 changes: 1 addition & 1 deletion mesonbuild/backend/ninjabackend.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
from .. import compilers
from ..compilers import CompilerArgs
from ..mesonlib import File, MesonException, OrderedSet
from ..mesonlib import get_meson_script, get_compiler_for_source, Popen_safe
from ..mesonlib import get_meson_script, get_compiler_for_source
from .backends import CleanTrees, InstallData
from ..build import InvalidArguments
import os, sys, pickle, re
Expand Down
1 change: 0 additions & 1 deletion mesonbuild/backend/vs2015backend.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
# See the License for the specific language governing permissions and
# limitations under the License.

from xml.etree import ElementTree as ET
from .vs2010backend import Vs2010Backend


Expand Down
8 changes: 4 additions & 4 deletions mesonbuild/environment.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@
# See the License for the specific language governing permissions and
# limitations under the License.

import os, re, subprocess, platform
from . import coredata
from . import mesonlib
from . import mlog
import os
import platform
import re

from .compilers import *
from .mesonlib import EnvironmentException, Popen_safe
import configparser
Expand Down
3 changes: 1 addition & 2 deletions mesonbuild/scripts/dist.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,8 @@
# limitations under the License.


import os, sys
import os
import shutil
import argparse
import subprocess
import pickle
import hashlib
Expand Down
5 changes: 4 additions & 1 deletion run_unittests.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,10 @@
import subprocess
import re, json
import tempfile
import unittest, os, sys, shutil, time
import os
import shutil
import sys
import unittest
from glob import glob
from pathlib import PurePath
import mesonbuild.compilers
Expand Down

0 comments on commit 65b1d33

Please sign in to comment.