vmesel/PyJobs

View on GitHub
pyjobs/synchronizer/management/commands/load_jobs_from_github.py

Summary

Maintainability
A
3 hrs
Test Coverage
D
68%

Function handle has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
Open

    def handle(self, *args, **options):
        if not settings.GITHUB_ACCESS_TOKEN or not settings.GITHUB_DEFAULT_REPO:
            return "False"

        g = Github(settings.GITHUB_ACCESS_TOKEN)
Severity: Minor
Found in pyjobs/synchronizer/management/commands/load_jobs_from_github.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 setup_labels has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
Open

def setup_labels(labels, content):
    content["salary_range"] = 10
    content["contract_form"] = 1
    content["job_level"] = 5
    content["remote"] = False
Severity: Minor
Found in pyjobs/synchronizer/management/commands/load_jobs_from_github.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 section_reshaping has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
Open

def section_reshaping(sections, issue_content):
    """
    This function enables markdown <h2> to be detected and inserted
    in the right section of the original dictionary.

Severity: Minor
Found in pyjobs/synchronizer/management/commands/load_jobs_from_github.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 format_issue_content has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
Open

def format_issue_content(issue_content):
    sections = {
        "Nossa empresa": "",
        "Descrição da vaga": "",
        "Local": "",
Severity: Minor
Found in pyjobs/synchronizer/management/commands/load_jobs_from_github.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

There are no issues that match your filters.

Category
Status