mirror of
https://github.com/platformio/platformio-core.git
synced 2025-07-29 17:47:14 +02:00
Hide PyLint warning with undefined WindowsError exception
This commit is contained in:
@ -11,7 +11,7 @@ MAX_SOURCES_LENGTH = 8000 # Windows CLI has limit with command length to 8192
|
||||
def _remove_tmpfile(path):
|
||||
try:
|
||||
remove(path)
|
||||
except WindowsError:
|
||||
except WindowsError: # pylint: disable=E0602
|
||||
pass
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user