EventGhost/EventGhost

View on GitHub
eg/Classes/App.py

Summary

Maintainability
A
3 hrs
Test Coverage

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

    def OnExit(self):
        if not eg.startupArguments.translate:
            eg.PrintDebugNotice("Calling exit functions")
            for func in self.onExitFuncs:
                eg.PrintDebugNotice(func)
Severity: Minor
Found in eg/Classes/App.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 OnQueryEndSessionVista has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
Open

    def OnQueryEndSessionVista(self, event):
        if self.shouldVeto:
            event.Veto()
            return
        if not self.firstQuery:
Severity: Minor
Found in eg/Classes/App.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

Avoid too many return statements within this function.
Open

                return
Severity: Major
Found in eg/Classes/App.py - About 30 mins to fix

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

        def Exit(self, dummyEvent=None):
            if eg.document.CheckFileNeedsSave() == wx.ID_CANCEL:
                return False
            if eg.pyCrustFrame:
                eg.pyCrustFrame.Close()
    Severity: Minor
    Found in eg/Classes/App.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