itsVale/Vale.py

View on GitHub
core/bot.py

Summary

Maintainability
C
1 day
Test Coverage

File bot.py has 348 lines of code (exceeds 250 allowed). Consider refactoring.
Open

import asyncio
import collections
import contextlib
import importlib
import inspect
Severity: Minor
Found in core/bot.py - About 4 hrs to fix

    ValePy has 26 functions (exceeds 20 allowed). Consider refactoring.
    Open

    class ValePy(commands.AutoShardedBot):
        __version__ = '0.0.2a'
        version_info = VersionInfo(major=0, minor=0, micro=2, releaselevel='alpha', serial=0)
    
        def __init__(self):
    Severity: Minor
    Found in core/bot.py - About 3 hrs to fix

      Function _load_emojis has a Cognitive Complexity of 19 (exceeds 5 allowed). Consider refactoring.
      Open

          def _load_emojis(self):
              import emoji
      
              emoji_cache = {}
      
      
      Severity: Minor
      Found in core/bot.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 load_extension has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
      Open

          def load_extension(self, name):
              modules = self.search_extensions(name)
              if not modules:
                  return super().load_extension(name)
      
      
      Severity: Minor
      Found in core/bot.py - About 35 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 __parse_activity has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
      Open

          def __parse_activity(self, activity):
              if isinstance(activity, str):
                  return discord.Game(name=self.__format_name_for_activity(activity))
      
              if isinstance(activity, collections.abc.Sequence):
      Severity: Minor
      Found in core/bot.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