leandrotoledo/python-telegram-bot

View on GitHub
telegram/_update.py

Summary

Maintainability
D
2 days
Test Coverage

File _update.py has 600 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: Major
Found in telegram/_update.py - About 1 day to fix

    Function __init__ has 25 arguments (exceeds 4 allowed). Consider refactoring.
    Open

        def __init__(
    Severity: Major
    Found in telegram/_update.py - About 3 hrs to fix

      Function effective_chat has a Cognitive Complexity of 17 (exceeds 5 allowed). Consider refactoring.
      Open

          def effective_chat(self) -> Optional["Chat"]:
              """
              :class:`telegram.Chat`: The chat that this update was sent in, no matter what kind of
              update this is.
              If no chat is associated with this update, this gives :obj:`None`.
      Severity: Minor
      Found in telegram/_update.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 effective_user has a Cognitive Complexity of 16 (exceeds 5 allowed). Consider refactoring.
      Open

          def effective_user(self) -> Optional["User"]:
              """
              :class:`telegram.User`: The user that sent this update, no matter what kind of update this
              is. If no user is associated with this update, this gives :obj:`None`. This is the case
              if any of
      Severity: Minor
      Found in telegram/_update.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 __init__ has 31 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          def __init__(
              self,
              update_id: int,
              message: Optional[Message] = None,
              edited_message: Optional[Message] = None,
      Severity: Minor
      Found in telegram/_update.py - About 1 hr to fix

        Function effective_message has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
        Open

            def effective_message(self) -> Optional[Message]:
                """
                :class:`telegram.Message`: The message included in this update, no matter what kind of
                    update this is. More precisely, this will be the message contained in :attr:`message`,
                    :attr:`edited_message`, :attr:`channel_post`, :attr:`edited_channel_post` or
        Severity: Minor
        Found in telegram/_update.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

        Consider simplifying this complex logical expression.
        Open

                if message := (
                    self.message
                    or self.edited_message
                    or self.channel_post
                    or self.edited_channel_post
        Severity: Major
        Found in telegram/_update.py - About 40 mins to fix

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

              def effective_sender(self) -> Optional[Union["User", "Chat"]]:
                  """
                  :class:`telegram.User` or :class:`telegram.Chat`: The user or chat that sent this update,
                  no matter what kind of update this is.
          
          
          Severity: Minor
          Found in telegram/_update.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