diff options
author | Anthony G. Basile <blueness@gentoo.org> | 2015-10-07 04:07:06 -0400 |
---|---|---|
committer | Anthony G. Basile <blueness@gentoo.org> | 2015-10-07 04:07:06 -0400 |
commit | 31e872a14e53e87a1788dd96cbae1e11683a6487 (patch) | |
tree | 90cf8e5ed9dcf9346274fb38ed9f200a01dbe4c4 | |
parent | lint: fix white spaces (diff) | |
download | grss-31e872a14e53e87a1788dd96cbae1e11683a6487.tar.gz grss-31e872a14e53e87a1788dd96cbae1e11683a6487.tar.bz2 grss-31e872a14e53e87a1788dd96cbae1e11683a6487.zip |
lint: remove unused imports.
-rw-r--r-- | grs/Daemon.py | 2 | ||||
-rw-r--r-- | grs/PivotChroot.py | 3 |
2 files changed, 0 insertions, 5 deletions
diff --git a/grs/Daemon.py b/grs/Daemon.py index 79aaa42..0cefaef 100644 --- a/grs/Daemon.py +++ b/grs/Daemon.py @@ -18,9 +18,7 @@ import atexit import os -import signal import sys -import time class Daemon: """ Adopted from Sander Marechal's "A simple unix/linux daemon in Python" diff --git a/grs/PivotChroot.py b/grs/PivotChroot.py index 6324b6e..248bbac 100644 --- a/grs/PivotChroot.py +++ b/grs/PivotChroot.py @@ -16,13 +16,10 @@ # 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 re import os import shutil from grs.Constants import CONST -from grs.MountDirectories import MountDirectories from grs.Rotator import Rotator |