cogniteev/docido-python-sdk

View on GitHub
docido_sdk/toolbox/rate_limits.py

Summary

Maintainability
C
1 day
Test Coverage

File rate_limits.py has 318 lines of code (exceeds 250 allowed). Consider refactoring.
Open

from collections import Mapping
import copy
import functools
import inspect
import logging
Severity: Minor
Found in docido_sdk/toolbox/rate_limits.py - About 3 hrs to fix

    Function teb_retry has a Cognitive Complexity of 20 (exceeds 5 allowed). Consider refactoring.
    Open

    def teb_retry(exc=RequestException,
                  when=dict(response__status_code=429),
                  delay='response__headers__Retry-After',
                  max_collisions=MAX_COLLISIONS,
                  default_retry=DEFAULT_RETRY):
    Severity: Minor
    Found in docido_sdk/toolbox/rate_limits.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 teb_retry has 5 arguments (exceeds 4 allowed). Consider refactoring.
    Open

    def teb_retry(exc=RequestException,
    Severity: Minor
    Found in docido_sdk/toolbox/rate_limits.py - About 35 mins to fix

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

      def truncated_exponential_backoff(
      Severity: Minor
      Found in docido_sdk/toolbox/rate_limits.py - About 35 mins to fix

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

            def __call__(self, units=1, waits=True, context=None):
                """To be called before consuming a resource that is subject to rate-limits.
        
                :param units:
                  Number of units consumed by the API call that is about to be made.
        Severity: Minor
        Found in docido_sdk/toolbox/rate_limits.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