Commit faa5410d authored by Marco Castelluccio's avatar Marco Castelluccio
Browse files

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


# ignore-this-changeset

Differential Revision: https://phabricator.services.mozilla.com/D162661
parent 04faed77
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -9,8 +9,8 @@

from __future__ import absolute_import, print_function

import sys
import json
import sys

l10n_changesets_json_path = sys.argv[1]
with open(l10n_changesets_json_path) as f:
+1 −1
Original line number Diff line number Diff line
@@ -6,8 +6,8 @@

from __future__ import absolute_import, print_function

import sys
import json
import sys

l10n_changesets_json_path = sys.argv[1]
with open(l10n_changesets_json_path) as f:
+2 −2
Original line number Diff line number Diff line
@@ -14,14 +14,14 @@ import os
import shutil
import tempfile
import time
from distutils.util import strtobool
from contextlib import AsyncExitStack
from distutils.util import strtobool
from pathlib import Path

import aiohttp
from mardor.reader import MarReader
from mardor.signing import get_keysize
from scriptworker.utils import retry_async, get_hash
from scriptworker.utils import get_hash, retry_async

log = logging.getLogger(__name__)

+6 −4
Original line number Diff line number Diff line
@@ -10,13 +10,15 @@ import sys
sys.path.append("/builds/worker/checkouts/gecko/third_party/python")
sys.path.append(".")

import os
import stat
import base64
import signal
import os
import platform
import requests
import signal
import stat
import subprocess

import requests

import taskcluster

# Bump this number when you need to cause a commit for the job to re-run: 21
+3 −0
Original line number Diff line number Diff line
[settings]
profile=black
known_first_party=gecko_taskgraph
 No newline at end of file
Loading