diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2018-11-30 03:27:41 -0500 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2018-11-30 11:33:45 -0800 |
commit | c5d8cf8eb6a6e84347b9379945f308f29a2fe5cb (patch) | |
tree | 306901036624b604e0d7d7c0e33c6d10ec39b713 /tools/sync_third_party.py | |
parent | d43a4be0d291d2cb1fb4f5a9353b509e87f849eb (diff) |
Use pylint.
Diffstat (limited to 'tools/sync_third_party.py')
-rwxr-xr-x | tools/sync_third_party.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/sync_third_party.py b/tools/sync_third_party.py index 5fe78c407..4205c4883 100755 --- a/tools/sync_third_party.py +++ b/tools/sync_third_party.py @@ -3,7 +3,8 @@ # Run this script if you are changing Deno's dependencies. # To update the deno_third_party git repo after running this, try the following: # cd third_party -# find . -type f | grep -v "\.git" | xargs -I% git add -f --no-warn-embedded-repo "%" +# find . -type f | grep -v "\.git" | \ +# xargs -I% git add -f --no-warn-embedded-repo "%" import third_party import util |