mirror of
https://github.com/espressif/esp-idf.git
synced 2025-08-09 04:25:32 +00:00
style: format python files with isort and double-quote-string-fixer
This commit is contained in:
@@ -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)
|
||||
|
Reference in New Issue
Block a user