Ryuno-Ki/webmention-tools

View on GitHub

Showing 6 of 8 total issues

Function _ensure_url has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
Open

def _ensure_url(target_url: str, url_string: str = "") -> str:
    parts = []

    parsed = urlsplit(url_string)
    parsed_url = urlsplit(target_url)
Severity: Minor
Found in webmentiontools/parser.py - About 1 hr to fix

Cognitive Complexity

Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

A method's cognitive complexity is based on a few simple rules:

  • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
  • Code is considered more complex for each "break in the linear flow of the code"
  • Code is considered more complex when "flow breaking structures are nested"

Further reading

Function image has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
Open

    def image(self):
        """
        Gets an image for this URL.
        """
        if 'image' in self.data:
Severity: Minor
Found in webmentiontools/urlinfo.py - About 1 hr to fix

Cognitive Complexity

Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

A method's cognitive complexity is based on a few simple rules:

  • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
  • Code is considered more complex for each "break in the linear flow of the code"
  • Code is considered more complex when "flow breaking structures are nested"

Further reading

Function parse_html has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
Open

def parse_html(target_url: str, html: str) -> Optional[str]:
    """
    Searches the markup for a valid Webmention endpoint.

    :param target_url: The URL from which the HTML is passed.
Severity: Minor
Found in webmentiontools/parser.py - About 1 hr to fix

Cognitive Complexity

Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

A method's cognitive complexity is based on a few simple rules:

  • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
  • Code is considered more complex for each "break in the linear flow of the code"
  • Code is considered more complex when "flow breaking structures are nested"

Further reading

Function __init__ has 6 arguments (exceeds 4 allowed). Consider refactoring.
Open

    def __init__(self,  # pylint: disable=too-many-arguments
Severity: Minor
Found in webmentiontools/send.py - About 45 mins to fix

    Avoid too many return statements within this function.
    Open

            return None
    Severity: Major
    Found in webmentiontools/urlinfo.py - About 30 mins to fix

      Function snippet_with_link has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
      Open

          def snippet_with_link(self, url):
              """ This method will try to return the first
              <p> or <div> that contains an <a> tag linking to
              the given URL.
              """
      Severity: Minor
      Found in webmentiontools/urlinfo.py - About 25 mins to fix

      Cognitive Complexity

      Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

      A method's cognitive complexity is based on a few simple rules:

      • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
      • Code is considered more complex for each "break in the linear flow of the code"
      • Code is considered more complex when "flow breaking structures are nested"

      Further reading

      Severity
      Category
      Status
      Source
      Language