rm redundant imports

This commit is contained in:
Radovan Bast 2016-05-18 22:45:11 +02:00
parent e0b81c5516
commit d5e44a5bce

View File

@ -2,8 +2,6 @@
import os
import sys
import ast
import collections
AUTOCMAKE_GITHUB_URL = 'https://github.com/coderefinery/autocmake/raw/yaml/'
@ -36,7 +34,7 @@ def fetch_modules(config, relative_path):
Assemble modules which will
be included in CMakeLists.txt.
"""
from collections import Iterable
from collections import Iterable, namedtuple
from autocmake.extract import extract_list
download_directory = 'downloaded'
@ -47,7 +45,7 @@ def fetch_modules(config, relative_path):
sources = extract_list(config, 'source')
modules = []
Module = collections.namedtuple('Module', 'path name')
Module = namedtuple('Module', 'path name')
warnings = []