We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f63fe16 commit 7687a0aCopy full SHA for 7687a0a
platformio/exception.py
@@ -19,8 +19,9 @@ class PlatformioException(Exception):
19
20
def __str__(self): # pragma: no cover
21
if self.MESSAGE:
22
- return self.MESSAGE.format(*self.args # pylint: disable=not-an-iterable
23
- )
+ # pylint: disable=not-an-iterable
+ return self.MESSAGE.format(*self.args)
24
+
25
return super(PlatformioException, self).__str__()
26
27
0 commit comments