Use pylint.

This commit is contained in:
Ryan Dahl 2018-11-30 03:27:41 -05:00
parent d43a4be0d2
commit c5d8cf8eb6
18 changed files with 93 additions and 53 deletions

View file

@ -138,6 +138,10 @@ def permission_prompt_test(deno_exe):
p.test_net_no()
if __name__ == "__main__":
def main():
deno_exe = os.path.join(build_path(), "deno" + executable_suffix)
permission_prompt_test(deno_exe)
if __name__ == "__main__":
main()