mirror of
https://github.com/servo/servo.git
synced 2025-06-27 18:43:40 +01:00
Remove unused imports in the Python files
Found using flake8
This commit is contained in:
parent
c63fc4dc13
commit
7bddb1185f
8 changed files with 4 additions and 24 deletions
|
@ -6,10 +6,7 @@ from __future__ import print_function, unicode_literals
|
|||
|
||||
from textwrap import TextWrapper
|
||||
|
||||
from mach.decorators import (
|
||||
CommandProvider,
|
||||
Command,
|
||||
)
|
||||
from mach.decorators import Command
|
||||
|
||||
|
||||
#@CommandProvider
|
||||
|
|
|
@ -16,7 +16,6 @@ import os
|
|||
import sys
|
||||
import traceback
|
||||
import uuid
|
||||
import sys
|
||||
|
||||
from .base import (
|
||||
CommandContext,
|
||||
|
@ -26,11 +25,7 @@ from .base import (
|
|||
UnrecognizedArgumentError,
|
||||
)
|
||||
|
||||
from .decorators import (
|
||||
CommandArgument,
|
||||
CommandProvider,
|
||||
Command,
|
||||
)
|
||||
from .decorators import CommandProvider
|
||||
|
||||
from .config import ConfigSettings
|
||||
from .dispatcher import CommandAction
|
||||
|
|
|
@ -9,7 +9,6 @@ import os
|
|||
import unittest
|
||||
|
||||
from mach.main import Mach
|
||||
from mach.base import CommandContext
|
||||
|
||||
here = os.path.abspath(os.path.dirname(__file__))
|
||||
|
||||
|
|
|
@ -4,8 +4,6 @@
|
|||
|
||||
from __future__ import unicode_literals
|
||||
|
||||
import time
|
||||
|
||||
from mach.decorators import (
|
||||
CommandArgument,
|
||||
CommandProvider,
|
||||
|
|
|
@ -11,8 +11,6 @@ from mach.base import MachError
|
|||
from mach.test.common import TestBase
|
||||
from mock import patch
|
||||
|
||||
from mozunit import main
|
||||
|
||||
|
||||
here = os.path.abspath(os.path.dirname(__file__))
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue