Mithil467/mitype

View on GitHub
mitype/commandline.py

Summary

Maintainability
A
25 mins
Test Coverage

Standard pseudo-random generators are not suitable for security/cryptographic purposes.
Open

def load_based_on_difficulty(difficulty_level=random.randrange(1, 6)):
Severity: Info
Found in mitype/commandline.py by bandit

Standard pseudo-random generators are not suitable for security/cryptographic purposes.
Open

        text_id = random.randrange(lower_limit, upper_limit + 1)
Severity: Info
Found in mitype/commandline.py by bandit

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

def resolve_commandline_arguments():
    """Parse CLI arguments and return practice text details.

    Returns:
        (str, Union[str, int]): Tuple of text content and text ID.
Severity: Minor
Found in mitype/commandline.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