summaryrefslogtreecommitdiff
path: root/tools/format.py
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2019-09-11 16:47:42 -0400
committerGitHub <noreply@github.com>2019-09-11 16:47:42 -0400
commit82dc1b8e59891a7ca0f1a5e67a3db952b918561c (patch)
treee958c5d7bff81a4f218ad81b5e7b56451213d60a /tools/format.py
parentad11f2ad6aae758e67734d60f068285fb5e10655 (diff)
Upgrade pylint (#2917)
depot_tools is removing pylint from its distribution so we must maintain our own copy.
Diffstat (limited to 'tools/format.py')
-rwxr-xr-xtools/format.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/format.py b/tools/format.py
index aa2208b01..95aa2d2e9 100755
--- a/tools/format.py
+++ b/tools/format.py
@@ -3,10 +3,10 @@
from glob import glob
import os
import sys
+import argparse
from third_party import google_env, python_env
from third_party import clang_format_path, third_party_path
from util import root_path, run, find_exts, platform
-import argparse
parser = argparse.ArgumentParser()
parser.add_argument("--js", help="only run prettier", action="store_true")