Bug 1790816 - Reformat python/ with isort. r=#linter-reviewers CLOSED TREE

# ignore-this-changeset

Differential Revision: https://phabricator.services.mozilla.com/D162656
This commit is contained in:
Marco Castelluccio
2022-12-21 09:56:15 +00:00
parent d558e4f19b
commit 9905632fd2
350 changed files with 1414 additions and 1627 deletions

View File

@@ -7,18 +7,17 @@ from __future__ import absolute_import, print_function, unicode_literals
import argparse
import logging
import os
import tempfile
import subprocess
import tempfile
from concurrent.futures import ThreadPoolExecutor, as_completed, thread
from multiprocessing import cpu_count
from concurrent.futures import ThreadPoolExecutor, as_completed, thread
from tqdm import tqdm
import mozinfo
from mozfile import which
from mach.decorators import CommandArgument, Command
from mach.decorators import Command, CommandArgument
from manifestparser import TestManifest
from manifestparser import filters as mpf
from mozfile import which
from tqdm import tqdm
@Command("python", category="devenv", description="Run Python.")