attzonko/mmpy_bot

View on GitHub
mmpy_bot/function.py

Summary

Maintainability
B
5 hrs
Test Coverage

Function __call__ has a Cognitive Complexity of 20 (exceeds 5 allowed). Consider refactoring.
Open

    def __call__(self, message: Message, *args):
        # We need to return this so that if this MessageFunction was called with `await`,
        # asyncio doesn't crash.
        return_value = None if not self.is_coroutine else completed_future()

Severity: Minor
Found in mmpy_bot/function.py - About 2 hrs 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 a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
Open

    def __init__(
        self,
        *args,
        direct_only: bool = False,
        needs_mention: bool = False,
Severity: Minor
Found in mmpy_bot/function.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

Avoid too many return statements within this function.
Open

                return self.plugin.driver.reply_to(message, f"{e}\n{self.docstring}")
Severity: Major
Found in mmpy_bot/function.py - About 30 mins to fix

Avoid too many return statements within this function.
Open

        return self.function(self.plugin, message, *args)
Severity: Major
Found in mmpy_bot/function.py - About 30 mins to fix

Avoid too many return statements within this function.
Open

                return self.function.invoke(ctx)
Severity: Major
Found in mmpy_bot/function.py - About 30 mins to fix

There are no issues that match your filters.

Category
Status