mstuttgart/pynocchio

View on GitHub
pynocchio/main_window_view.py

Summary

Maintainability
D
2 days
Test Coverage

File main_window_view.py has 544 lines of code (exceeds 250 allowed). Consider refactoring.
Open

import logging

from PyQt5 import QtCore, QtGui, QtWidgets

try:
Severity: Major
Found in pynocchio/main_window_view.py - About 1 day to fix

    MainWindowView has 58 functions (exceeds 20 allowed). Consider refactoring.
    Open

    class MainWindowView(QtWidgets.QMainWindow):
    
        MAX_RECENT_FILES = 5
        MAX_BOOKMARK_FILES = 5
    
    
    Severity: Major
    Found in pynocchio/main_window_view.py - About 1 day to fix

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

          def on_action_fullscreen_triggered(self):
      
              if self.isFullScreen():
                  self.ui.menubar.show()
                  if self.ui.action_show_toolbar.isChecked():
      Severity: Minor
      Found in pynocchio/main_window_view.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

      There are no issues that match your filters.

      Category
      Status