itsVale/Vale.py

View on GitHub
utils/paginator.py

Summary

Maintainability
C
7 hrs
Test Coverage

File paginator.py has 322 lines of code (exceeds 250 allowed). Consider refactoring.
Open

import asyncio
import collections
import contextlib
import functools
import itertools
Severity: Minor
Found in utils/paginator.py - About 3 hrs to fix

    Function __init_subclass__ has a Cognitive Complexity of 16 (exceeds 5 allowed). Consider refactoring.
    Open

        def __init_subclass__(cls, stop_emoji='\N{BLACK SQUARE FOR STOP}', stop_pattern=None, stop_fallback='exit', **kwargs):
            super().__init_subclass__(**kwargs)
            cls._reaction_map = callbacks = collections.OrderedDict()
    
            cls._message_callbacks = message_callbacks = []
    Severity: Minor
    Found in utils/paginator.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 6 arguments (exceeds 4 allowed). Consider refactoring.
    Open

        def __init__(self, ctx, entries, *, per_page=15, title=discord.Embed.Empty, color=None):
    Severity: Minor
    Found in utils/paginator.py - About 45 mins to fix

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

          def __init__(self, ctx, entries, *, inline=True, **kwargs):
      Severity: Minor
      Found in utils/paginator.py - About 35 mins to fix

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

        def trigger(emoji, pattern=None, *, blocking=False, fallback=None):
        Severity: Minor
        Found in utils/paginator.py - About 35 mins to fix

          There are no issues that match your filters.

          Category
          Status