errbotio/errbot

View on GitHub
errbot/backends/base.py

Summary

Maintainability
D
2 days
Test Coverage

File base.py has 808 lines of code (exceeds 250 allowed). Consider refactoring.
Open

import io
import logging
import random
import time
from abc import ABC, abstractmethod
Severity: Major
Found in errbot/backends/base.py - About 1 day to fix

    Backend has 22 functions (exceeds 20 allowed). Consider refactoring.
    Open

    class Backend(ABC):
        """
        Implements the basic Bot logic (logic independent from the backend) and leaves
        you to implement the missing parts.
        """
    Severity: Minor
    Found in errbot/backends/base.py - About 2 hrs to fix

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

          def __init__(
      Severity: Major
      Found in errbot/backends/base.py - About 1 hr to fix

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

            def __init__(
        Severity: Major
        Found in errbot/backends/base.py - About 1 hr to fix

          Function serve_forever has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
          Open

              def serve_forever(self) -> None:
                  """
                  Connect the back-end to the server and serve forever.
          
                  Back-ends MAY choose to re-implement this method, in which case
          Severity: Minor
          Found in errbot/backends/base.py - About 55 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

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

              def __init__(
          Severity: Minor
          Found in errbot/backends/base.py - About 45 mins to fix

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

                def __init__(
            Severity: Minor
            Found in errbot/backends/base.py - About 35 mins to fix

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

                  def __str__(self):
                      response = ""
                      if self._reactor:
                          response += f'reactor: "{self._reactor}" '
                      if self._reaction_name:
              Severity: Minor
              Found in errbot/backends/base.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

              There are no issues that match your filters.

              Category
              Status