style: format python files with isort and double-quote-string-fixer

This commit is contained in:
Fu Hanxi
2021-01-26 10:49:01 +08:00
parent dc8402ea61
commit 0146f258d7
276 changed files with 8241 additions and 8162 deletions

View File

@@ -1,10 +1,11 @@
#!/usr/bin/env python
import sys
expected_executable = sys.argv[1]
active_executable = sys.executable
if expected_executable != active_executable:
print("Failure. Expected executable does not match current executable.")
print("Expected:", expected_executable)
print("Active: ", active_executable)
print('Failure. Expected executable does not match current executable.')
print('Expected:', expected_executable)
print('Active: ', active_executable)
sys.exit(1)