Fix "Unnecessary "else/elif" after "raise"" by PyLint

This commit is contained in:
Ivan Kravets
2019-03-07 12:35:34 +02:00
parent 5a72e3f2a1
commit 237d55208c
4 changed files with 5 additions and 9 deletions

View File

@ -84,9 +84,7 @@ WARNING! Don't use `sudo` for the rest PlatformIO commands.
fg="yellow",
err=True)
raise exception.ReturnErrorCode(1)
else:
raise exception.UpgradeError("\n".join(
[str(cmd), r['out'], r['err']]))
raise exception.UpgradeError("\n".join([str(cmd), r['out'], r['err']]))
return True

View File

@ -277,8 +277,7 @@ class LibraryManager(BasePkgManager):
if not lib_info:
if list(filters) == ["name"]:
raise exception.LibNotFound(filters['name'])
else:
raise exception.LibNotFound(str(filters))
raise exception.LibNotFound(str(filters))
if not silent:
click.echo("Found: %s" % click.style(
"https://platformio.org/lib/show/{id}/{name}".format(

View File

@ -481,7 +481,7 @@ class PkgInstallerMixin(object):
if versions is None:
util.internet_on(raise_exception=True)
raise exception.UnknownPackage(name)
elif not pkgdata:
if not pkgdata:
raise exception.UndefinedPackageVersion(requirements or "latest",
util.get_systype())
return pkg_dir

View File

@ -643,10 +643,9 @@ def _get_api_result(
except requests.exceptions.HTTPError as e:
if result and "message" in result:
raise exception.APIRequestError(result['message'])
elif result and "errors" in result:
if result and "errors" in result:
raise exception.APIRequestError(result['errors'][0]['title'])
else:
raise exception.APIRequestError(e)
raise exception.APIRequestError(e)
except ValueError:
raise exception.APIRequestError(
"Invalid response: %s" % r.text.encode("utf-8"))