leandrotoledo/python-telegram-bot

View on GitHub
telegram/ext/_callbackdatacache.py

Summary

Maintainability
C
7 hrs
Test Coverage

File _callbackdatacache.py has 335 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/ext/_callbackdatacache.py - About 4 hrs to fix

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

        def __process_message(self, message: Message) -> Optional[str]:
            """As documented in process_message, but returns the uuid of the attached keyboard, if any,
            which is relevant for process_callback_query.
    
            **IN PLACE**
    Severity: Minor
    Found in telegram/ext/_callbackdatacache.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 process_callback_query has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
    Open

        def process_callback_query(self, callback_query: CallbackQuery) -> None:
            """Replaces the data in the callback query and the attached messages keyboard with the
            cached objects, if necessary. If the data could not be found,
            :class:`telegram.ext.InvalidCallbackData` will be inserted.
            If :attr:`telegram.CallbackQuery.data` or :attr:`telegram.CallbackQuery.message` is
    Severity: Minor
    Found in telegram/ext/_callbackdatacache.py - About 55 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 __clear has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
    Open

        def __clear(
            self, mapping: MutableMapping, time_cutoff: Optional[Union[float, datetime]] = None
        ) -> None:
            if not time_cutoff:
                mapping.clear()
    Severity: Minor
    Found in telegram/ext/_callbackdatacache.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