leandrotoledo/python-telegram-bot

View on GitHub
telegram/_telegramobject.py

Summary

Maintainability
D
2 days
Test Coverage

File _telegramobject.py has 483 lines of code (exceeds 250 allowed). Consider refactoring.
Open

#!/usr/bin/env python
#
# A library that provides a Python interface to the Telegram Bot API
# Copyright (C) 2015-2024
# Leandro Toledo de Souza <devs@python-telegram-bot.org>
Severity: Minor
Found in telegram/_telegramobject.py - About 7 hrs to fix

    Function to_dict has a Cognitive Complexity of 22 (exceeds 5 allowed). Consider refactoring.
    Open

        def to_dict(self, recursive: bool = True) -> JSONDict:
            """Gives representation of object as :obj:`dict`.
    
            .. versionchanged:: 20.0
    
    
    Severity: Minor
    Found in telegram/_telegramobject.py - About 3 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 _get_attrs has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
    Open

        def _get_attrs(
            self,
            include_private: bool = False,
            recursive: bool = False,
            remove_bot: bool = False,
    Severity: Minor
    Found in telegram/_telegramobject.py - About 1 hr 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 _de_json has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
    Open

        def _de_json(
            cls: Type[Tele_co],
            data: Optional[JSONDict],
            bot: "Bot",
            api_kwargs: Optional[JSONDict] = None,
    Severity: Minor
    Found in telegram/_telegramobject.py - About 1 hr 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 __setstate__ has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
    Open

        def __setstate__(self, state: Dict[str, object]) -> None:
            """
            Overrides :meth:`object.__setstate__` to customize the unpickling process of objects of
            this type. Modifies the object in-place.
    
    
    Severity: Minor
    Found in telegram/_telegramobject.py - About 1 hr 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 __deepcopy__ has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
    Open

        def __deepcopy__(self: Tele_co, memodict: Dict[int, object]) -> Tele_co:
            """
            Customizes how :func:`copy.deepcopy` processes objects of this type.
            The only difference to the default implementation is that the :class:`telegram.Bot`
            instance set via :meth:`set_bot` (if any) is not copied, but shared between the original
    Severity: Minor
    Found in telegram/_telegramobject.py - About 45 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 _get_attrs has 5 arguments (exceeds 4 allowed). Consider refactoring.
    Open

        def _get_attrs(
    Severity: Minor
    Found in telegram/_telegramobject.py - About 35 mins to fix

      There are no issues that match your filters.

      Category
      Status