mirror of
https://github.com/platformio/platformio-core.git
synced 2026-05-04 20:04:13 +02:00
Fix PyLint warning with "No exception type(s) specified (bare-except)"
This commit is contained in:
@@ -103,7 +103,7 @@ class HTTPClient(object):
|
||||
return
|
||||
try:
|
||||
self._session.close()
|
||||
except:
|
||||
except: # pylint: disable=bare-except
|
||||
pass
|
||||
self._session = None
|
||||
|
||||
|
||||
Reference in New Issue
Block a user