From 68ae493f825c7cc693413d9ccfee77d2e6d2956e Mon Sep 17 00:00:00 2001 From: Dirkjan Ochtman Date: Wed, 18 Mar 2015 18:53:24 +0100 Subject: [PATCH] Bug 1143660 - Remove unused imports from mozboot. r=gps --- python/mozboot/mozboot/centos.py | 1 - python/mozboot/mozboot/fedora.py | 2 -- python/mozboot/mozboot/gentoo.py | 2 -- python/mozboot/mozboot/mach_commands.py | 1 - python/mozboot/mozboot/openbsd.py | 2 -- 5 files changed, 8 deletions(-) diff --git a/python/mozboot/mozboot/centos.py b/python/mozboot/mozboot/centos.py index 4685847d1c9..4bdb9b304a9 100644 --- a/python/mozboot/mozboot/centos.py +++ b/python/mozboot/mozboot/centos.py @@ -2,7 +2,6 @@ # License, v. 2.0. If a copy of the MPL was not distributed with this file, # You can obtain one at http://mozilla.org/MPL/2.0/. -import os import platform from mozboot.base import BaseBootstrapper diff --git a/python/mozboot/mozboot/fedora.py b/python/mozboot/mozboot/fedora.py index d8b8a9d70d9..1ebef2f2ade 100644 --- a/python/mozboot/mozboot/fedora.py +++ b/python/mozboot/mozboot/fedora.py @@ -2,8 +2,6 @@ # License, v. 2.0. If a copy of the MPL was not distributed with this file, # You can obtain one at http://mozilla.org/MPL/2.0/. -import os - from mozboot.base import BaseBootstrapper class FedoraBootstrapper(BaseBootstrapper): diff --git a/python/mozboot/mozboot/gentoo.py b/python/mozboot/mozboot/gentoo.py index 31636be3bc7..832ff131375 100644 --- a/python/mozboot/mozboot/gentoo.py +++ b/python/mozboot/mozboot/gentoo.py @@ -2,8 +2,6 @@ # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. -import os - from mozboot.base import BaseBootstrapper class GentooBootstrapper(BaseBootstrapper): diff --git a/python/mozboot/mozboot/mach_commands.py b/python/mozboot/mozboot/mach_commands.py index 65325c1ecf7..e902994854c 100644 --- a/python/mozboot/mozboot/mach_commands.py +++ b/python/mozboot/mozboot/mach_commands.py @@ -5,7 +5,6 @@ from __future__ import unicode_literals from mach.decorators import ( - CommandArgument, CommandProvider, Command, ) diff --git a/python/mozboot/mozboot/openbsd.py b/python/mozboot/mozboot/openbsd.py index 92acd9a942b..34e27bfde5c 100644 --- a/python/mozboot/mozboot/openbsd.py +++ b/python/mozboot/mozboot/openbsd.py @@ -2,8 +2,6 @@ # License, v. 2.0. If a copy of the MPL was not distributed with this file, # You can obtain one at http://mozilla.org/MPL/2.0/. -import os - from mozboot.base import BaseBootstrapper class OpenBSDBootstrapper(BaseBootstrapper):