Bug 1790816 - Reformat modules/ with isort. r=linter-reviewers,Standard8 DONTBUILD

# ignore-this-changeset

Differential Revision: https://phabricator.services.mozilla.com/D162650
This commit is contained in:
Marco Castelluccio 2022-11-23 12:34:34 +00:00
parent 3546e1a363
commit 1fd7f6f287
2 changed files with 10 additions and 7 deletions

View File

@ -3,14 +3,16 @@
# You can obtain one at http://mozilla.org/MPL/2.0/.
from __future__ import print_function
import buildconfig
from collections import defaultdict
import os
from six import StringIO
import sys
from collections import defaultdict
import buildconfig
import yaml
from mozbuild.preprocessor import Preprocessor
from mozbuild.util import ensureParentDir, FileAvoidWrite
from mozbuild.util import FileAvoidWrite, ensureParentDir
from six import StringIO
VALID_KEYS = {
"name",

View File

@ -4,13 +4,14 @@
from __future__ import absolute_import, print_function
import mozpack.path as mozpath
import mozunit
import sys
import unittest
import yaml
from os import path
import mozpack.path as mozpath
import mozunit
import yaml
try:
from StringIO import StringIO
except ImportError: