BonHowi/discordPogmareBot

View on GitHub

Showing 5 of 6 total issues

File databasecog.py has 418 lines of code (exceeds 250 allowed). Consider refactoring.
Open

import os
from datetime import datetime

import discord
import pandas as pd
Severity: Minor
Found in cogs/databasecog.py - About 6 hrs to fix

    Function __init__ has 29 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        def __init__(self):
            super().__init__(command_prefix="!", intents=intents)
    
            self.create_main_log_msg('\n --------------- STARTING BOT ---------------')
            self.create_main_log_msg('Init')
    Severity: Minor
    Found in main.py - About 1 hr to fix

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

          def db_count_spot_table(cls, table, _id: int, monster_type: str, monster_name: str,
      Severity: Minor
      Found in cogs/databasecog.py - About 45 mins to fix

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

            def db_count_spot_table_event(cls, table, _id, monster_type: str, counter: int) -> dict:
        Severity: Minor
        Found in cogs/databasecog.py - About 35 mins to fix

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

              def get_monster(self, ctx, name: str):
                  name = name.lower()
                  monster_found = None
          
                  for monster in self.bot.config["commands"]:
          Severity: Minor
          Found in cogs/cogbase.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

          Severity
          Category
          Status
          Source
          Language