container-registry / harbor-api-client

Unnecessary else / elif used after return PYL-R1705
Style
Major
8 months agoa year old
Unnecessary "else" after "return", remove the "else" and de-indent the code inside it
 57                 returns the request thread.
 58        """
 59        kwargs["_return_http_data_only"] = True
 60        if kwargs.get("async_req"): 61            return self.list_webhook_jobs_with_http_info(
 62                project_name_or_id, policy_id, **kwargs
 63            )  # noqa: E501
Unnecessary "else" after "return", remove the "else" and de-indent the code inside it
 464                 returns the request thread.
 465        """
 466        kwargs["_return_http_data_only"] = True
 467        if kwargs.get("async_req"): 468            return self.get_webhook_policy_of_project_with_http_info(
 469                project_name_or_id, webhook_policy_id, **kwargs
 470            )  # noqa: E501
Unnecessary "else" after "return", remove the "else" and de-indent the code inside it
 728                 returns the request thread.
 729        """
 730        kwargs["_return_http_data_only"] = True
 731        if kwargs.get("async_req"): 732            return self.list_webhook_policies_of_project_with_http_info(
 733                project_name_or_id, **kwargs
 734            )  # noqa: E501
Unnecessary "else" after "return", remove the "else" and de-indent the code inside it
 884                 returns the request thread.
 885        """
 886        kwargs["_return_http_data_only"] = True
 887        if kwargs.get("async_req"): 888            return self.update_webhook_policy_of_project_with_http_info(
 889                project_name_or_id, webhook_policy_id, policy, **kwargs
 890            )  # noqa: E501
Unnecessary "else" after "return", remove the "else" and de-indent the code inside it
  52                 returns the request thread.
  53        """
  54        kwargs["_return_http_data_only"] = True
  55        if kwargs.get("async_req"):  56            return self.create_webhook_policy_of_project_with_http_info(
  57                project_name_or_id, policy, **kwargs
  58            )  # noqa: E501