File bot.py
has 348 lines of code (exceeds 250 allowed). Consider refactoring. Open
import asyncio
import collections
import contextlib
import importlib
import inspect
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):
Function _load_emojis
has a Cognitive Complexity of 19 (exceeds 5 allowed). Consider refactoring. Open
def _load_emojis(self):
import emoji
emoji_cache = {}
- Read upRead up
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)
- Read upRead up
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):
- Read upRead up
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"