diff options
author | Anthony G. Basile <blueness@gentoo.org> | 2015-10-07 07:12:46 -0400 |
---|---|---|
committer | Anthony G. Basile <blueness@gentoo.org> | 2015-10-07 07:20:40 -0400 |
commit | c4b3254ab91a2079a9fdc657462489215f7b4e0b (patch) | |
tree | 86dd74b2893383176e34d79e1141228fa81d2210 | |
parent | lint: fix indentations. (diff) | |
download | grss-c4b3254ab91a2079a9fdc657462489215f7b4e0b.tar.gz grss-c4b3254ab91a2079a9fdc657462489215f7b4e0b.tar.bz2 grss-c4b3254ab91a2079a9fdc657462489215f7b4e0b.zip |
lint: more unused imports.
-rw-r--r-- | grs/Constants.py | 1 | ||||
-rw-r--r-- | grs/Log.py | 3 | ||||
-rw-r--r-- | grs/Populate.py | 1 | ||||
-rw-r--r-- | grs/Seed.py | 2 | ||||
-rw-r--r-- | grs/WorldConf.py | 1 |
5 files changed, 0 insertions, 8 deletions
diff --git a/grs/Constants.py b/grs/Constants.py index 669f086..ecbac40 100644 --- a/grs/Constants.py +++ b/grs/Constants.py @@ -17,7 +17,6 @@ # along with this program. If not, see <http://www.gnu.org/licenses/>. import os -import sys import configparser from copy import deepcopy @@ -1,10 +1,7 @@ #!/usr/bin/env python import datetime -import glob import os -import re -import shutil from grs.Constants import CONST from grs.Rotator import Rotator diff --git a/grs/Populate.py b/grs/Populate.py index 1c3f08e..db35ee2 100644 --- a/grs/Populate.py +++ b/grs/Populate.py @@ -18,7 +18,6 @@ import os import re -import shutil from grs.Constants import CONST from grs.Execute import Execute diff --git a/grs/Seed.py b/grs/Seed.py index e2c65c8..2bc429f 100644 --- a/grs/Seed.py +++ b/grs/Seed.py @@ -16,9 +16,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. -import glob import os -import re import shutil import urllib.request diff --git a/grs/WorldConf.py b/grs/WorldConf.py index e196338..d28f300 100644 --- a/grs/WorldConf.py +++ b/grs/WorldConf.py @@ -17,7 +17,6 @@ # along with this program. If not, see <http://www.gnu.org/licenses/>. import configparser -import copy import os import portage import re |