132nd-etcher/EMFT

View on GitHub

Showing 436 of 436 total issues

Function data has a Cognitive Complexity of 21 (exceeds 5 allowed). Consider refactoring.
Open

    def data(self, index: QModelIndex, role=Qt.DisplayRole):
        if index.isValid():
            if role == Qt.DisplayRole:
                item = self._data[index.row()]
                if hasattr(item, '__len__'):
Severity: Minor
Found in emft/gui/base.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

File updater.py has 287 lines of code (exceeds 250 allowed). Consider refactoring.
Open

# coding=utf-8
import io
import os
import subprocess
import typing
Severity: Minor
Found in emft/updater/updater.py - About 2 hrs to fix
  • Create a ticket

    Similar blocks of code found in 2 locations. Consider refactoring.
    Open

    Severity: Major
    Found in emft/core/providers/appveyor/av_objects/av_history.py and 1 other location - About 2 hrs to fix
    emft/core/providers/appveyor/av_objects/av_last_build.py on lines 0..15

    Duplicated Code

    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

    Tuning

    This issue has a mass of 60.

    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

    Refactorings

    Further Reading

    BaseUnit has 25 functions (exceeds 20 allowed). Consider refactoring.
    Open

    class BaseUnit(Group):
        validator_skill = Validator(_type=str,
                                    _in_list=['Average', 'Good', 'High', 'Excellent', 'Random', 'Client', 'Player'],
                                    exc=ValueError, logger=LOGGER)
        validator_unit_types = Validator(_type=str, _in_list=[], exc=ValueError, logger=LOGGER)
    Severity: Minor
    Found in emft/miz/mission.py - About 2 hrs to fix
    • Create a ticket

      Similar blocks of code found in 2 locations. Consider refactoring.
      Open

      Severity: Major
      Found in emft/core/providers/appveyor/av_objects/av_last_build.py and 1 other location - About 2 hrs to fix
      emft/core/providers/appveyor/av_objects/av_history.py on lines 0..15

      Duplicated Code

      Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

      Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

      When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

      Tuning

      This issue has a mass of 60.

      We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

      The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

      If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

      See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

      Refactorings

      Further Reading

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

          def add_children(self, children: list):  # noqa C901
              for r in range(len(children)):  # "r" is the row
                  child = children[r]
                  for c in range(len(child)):  # "c" is the column
                      if child[c] is None:
      Severity: Minor
      Found in emft/gui/base.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

      Coalition has 24 functions (exceeds 20 allowed). Consider refactoring.
      Open

      class Coalition(BaseMissionObject):
          def __init__(self, mission_dict, ln10, coa_color):
              super().__init__(mission_dict, ln10)
              self.coa_color = coa_color
              self._countries = {}
      Severity: Minor
      Found in emft/miz/mission.py - About 2 hrs to fix
      • Create a ticket

        GHRepo has 24 functions (exceeds 20 allowed). Consider refactoring.
        Open

        class GHRepo(JSONObject):
            def owner(self) -> GHUser:
                return GHUser(self.json['owner'])
        
            def permissions(self):
        Severity: Minor
        Found in emft/core/providers/github/gh_objects/gh_repo.py - About 2 hrs to fix
        • Create a ticket

          Cyclomatic complexity is too high in method number. (11)
          Open

              def number(self):  # noqa C901
                  # noinspection PyMissingOrEmptyDocstring
                  def next_digit(err):
                      _n = self.ch
                      self.next_chr()
          Severity: Minor
          Found in emft/core/sltp.py by radon

          Cyclomatic Complexity

          Cyclomatic Complexity corresponds to the number of decisions a block of code contains plus 1. This number (also called McCabe number) is equal to the number of linearly independent paths through the code. This number can be used as a guide when testing conditional logic in blocks.

          Radon analyzes the AST tree of a Python program to compute Cyclomatic Complexity. Statements have the following effects on Cyclomatic Complexity:

          Construct Effect on CC Reasoning
          if +1 An if statement is a single decision.
          elif +1 The elif statement adds another decision.
          else +0 The else statement does not cause a new decision. The decision is at the if.
          for +1 There is a decision at the start of the loop.
          while +1 There is a decision at the while statement.
          except +1 Each except branch adds a new conditional path of execution.
          finally +0 The finally block is unconditionally executed.
          with +1 The with statement roughly corresponds to a try/except block (see PEP 343 for details).
          assert +1 The assert statement internally roughly equals a conditional statement.
          Comprehension +1 A list/set/dict comprehension of generator expression is equivalent to a for loop.
          Boolean Operator +1 Every boolean operator (and, or) adds a decision point.

          Source: http://radon.readthedocs.org/en/latest/intro.html

          Cyclomatic complexity is too high in method filter_channel. (11)
          Open

              def filter_channel(
                  self,
                  versions: typing.Set[CustomVersion],
                  prerelease: str = channel.STABLE
              ):
          Severity: Minor
          Found in emft/updater/customspec.py by radon

          Cyclomatic Complexity

          Cyclomatic Complexity corresponds to the number of decisions a block of code contains plus 1. This number (also called McCabe number) is equal to the number of linearly independent paths through the code. This number can be used as a guide when testing conditional logic in blocks.

          Radon analyzes the AST tree of a Python program to compute Cyclomatic Complexity. Statements have the following effects on Cyclomatic Complexity:

          Construct Effect on CC Reasoning
          if +1 An if statement is a single decision.
          elif +1 The elif statement adds another decision.
          else +0 The else statement does not cause a new decision. The decision is at the if.
          for +1 There is a decision at the start of the loop.
          while +1 There is a decision at the while statement.
          except +1 Each except branch adds a new conditional path of execution.
          finally +0 The finally block is unconditionally executed.
          with +1 The with statement roughly corresponds to a try/except block (see PEP 343 for details).
          assert +1 The assert statement internally roughly equals a conditional statement.
          Comprehension +1 A list/set/dict comprehension of generator expression is equivalent to a for loop.
          Boolean Operator +1 Every boolean operator (and, or) adds a decision point.

          Source: http://radon.readthedocs.org/en/latest/intro.html

          Function string has a Cognitive Complexity of 19 (exceeds 5 allowed). Consider refactoring.
          Open

              def string(self, end=None):
                  s = ''
                  start = self.ch
                  if end == '[':
                      end = ']'
          Severity: Minor
          Found in emft/core/sltp.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

          BaseMissionObject has 23 functions (exceeds 20 allowed). Consider refactoring.
          Open

          class BaseMissionObject(Logged):
              def __init__(self, mission_dict: dict, l10n: dict):
                  super().__init__()
          
                  if not isinstance(mission_dict, dict):
          Severity: Minor
          Found in emft/miz/mission.py - About 2 hrs to fix
          • Create a ticket

            Cyclomatic complexity is too high in function _set_weather. (10)
            Open

            def _set_weather(station_icao, in_file, out_file):
                LOGGER.debug(f'getting METAR for {station_icao}')
                result = {
                    'icao': station_icao,
                    'from': in_file,
            Severity: Minor
            Found in emft/cli/weather.py by radon

            Cyclomatic Complexity

            Cyclomatic Complexity corresponds to the number of decisions a block of code contains plus 1. This number (also called McCabe number) is equal to the number of linearly independent paths through the code. This number can be used as a guide when testing conditional logic in blocks.

            Radon analyzes the AST tree of a Python program to compute Cyclomatic Complexity. Statements have the following effects on Cyclomatic Complexity:

            Construct Effect on CC Reasoning
            if +1 An if statement is a single decision.
            elif +1 The elif statement adds another decision.
            else +0 The else statement does not cause a new decision. The decision is at the if.
            for +1 There is a decision at the start of the loop.
            while +1 There is a decision at the while statement.
            except +1 Each except branch adds a new conditional path of execution.
            finally +0 The finally block is unconditionally executed.
            with +1 The with statement roughly corresponds to a try/except block (see PEP 343 for details).
            assert +1 The assert statement internally roughly equals a conditional statement.
            Comprehension +1 A list/set/dict comprehension of generator expression is equivalent to a for loop.
            Boolean Operator +1 Every boolean operator (and, or) adds a decision point.

            Source: http://radon.readthedocs.org/en/latest/intro.html

            Cyclomatic complexity is too high in method __run. (10)
            Open

                def __run(self, cmd, args, kwargs, callback, err_call_back, err_args, err_kwargs, task_id):
                    # noinspection PyBroadException
                    try:
                        return_value = self.__run_with_optional_args(cmd, args, kwargs)
                        if callback is not None:
            Severity: Minor
            Found in emft/core/threadpool.py by radon

            Cyclomatic Complexity

            Cyclomatic Complexity corresponds to the number of decisions a block of code contains plus 1. This number (also called McCabe number) is equal to the number of linearly independent paths through the code. This number can be used as a guide when testing conditional logic in blocks.

            Radon analyzes the AST tree of a Python program to compute Cyclomatic Complexity. Statements have the following effects on Cyclomatic Complexity:

            Construct Effect on CC Reasoning
            if +1 An if statement is a single decision.
            elif +1 The elif statement adds another decision.
            else +0 The else statement does not cause a new decision. The decision is at the if.
            for +1 There is a decision at the start of the loop.
            while +1 There is a decision at the while statement.
            except +1 Each except branch adds a new conditional path of execution.
            finally +0 The finally block is unconditionally executed.
            with +1 The with statement roughly corresponds to a try/except block (see PEP 343 for details).
            assert +1 The assert statement internally roughly equals a conditional statement.
            Comprehension +1 A list/set/dict comprehension of generator expression is equivalent to a for loop.
            Boolean Operator +1 Every boolean operator (and, or) adds a decision point.

            Source: http://radon.readthedocs.org/en/latest/intro.html

            Cyclomatic complexity is too high in method string. (10)
            Open

                def string(self, end=None):
                    s = ''
                    start = self.ch
                    if end == '[':
                        end = ']'
            Severity: Minor
            Found in emft/core/sltp.py by radon

            Cyclomatic Complexity

            Cyclomatic Complexity corresponds to the number of decisions a block of code contains plus 1. This number (also called McCabe number) is equal to the number of linearly independent paths through the code. This number can be used as a guide when testing conditional logic in blocks.

            Radon analyzes the AST tree of a Python program to compute Cyclomatic Complexity. Statements have the following effects on Cyclomatic Complexity:

            Construct Effect on CC Reasoning
            if +1 An if statement is a single decision.
            elif +1 The elif statement adds another decision.
            else +0 The else statement does not cause a new decision. The decision is at the if.
            for +1 There is a decision at the start of the loop.
            while +1 There is a decision at the while statement.
            except +1 Each except branch adds a new conditional path of execution.
            finally +0 The finally block is unconditionally executed.
            with +1 The with statement roughly corresponds to a try/except block (see PEP 343 for details).
            assert +1 The assert statement internally roughly equals a conditional statement.
            Comprehension +1 A list/set/dict comprehension of generator expression is equivalent to a for loop.
            Boolean Operator +1 Every boolean operator (and, or) adds a decision point.

            Source: http://radon.readthedocs.org/en/latest/intro.html

            Cyclomatic complexity is too high in function doc. (10)
            Open

            @cli.command()
            @click.option('-s', '--show', is_flag=True, help='Show the doc in browser')
            @click.option('-c', '--clean', is_flag=True, help='Clean build')
            @click.option('-p', '--publish', is_flag=True, help='Upload doc')
            @click.pass_context
            Severity: Minor
            Found in emft/build.py by radon

            Cyclomatic Complexity

            Cyclomatic Complexity corresponds to the number of decisions a block of code contains plus 1. This number (also called McCabe number) is equal to the number of linearly independent paths through the code. This number can be used as a guide when testing conditional logic in blocks.

            Radon analyzes the AST tree of a Python program to compute Cyclomatic Complexity. Statements have the following effects on Cyclomatic Complexity:

            Construct Effect on CC Reasoning
            if +1 An if statement is a single decision.
            elif +1 The elif statement adds another decision.
            else +0 The else statement does not cause a new decision. The decision is at the if.
            for +1 There is a decision at the start of the loop.
            while +1 There is a decision at the while statement.
            except +1 Each except branch adds a new conditional path of execution.
            finally +0 The finally block is unconditionally executed.
            with +1 The with statement roughly corresponds to a try/except block (see PEP 343 for details).
            assert +1 The assert statement internally roughly equals a conditional statement.
            Comprehension +1 A list/set/dict comprehension of generator expression is equivalent to a for loop.
            Boolean Operator +1 Every boolean operator (and, or) adds a decision point.

            Source: http://radon.readthedocs.org/en/latest/intro.html

            Cyclomatic complexity is too high in method _do. (10)
            Open

                def _do(self, obj_name, func, args, kwargs):
                    """
                    Actually do the work
                    :param obj_name: str or None; name of the attribute object holding func; MainUi if None
                    :param func: method to call
            Severity: Minor
            Found in emft/gui/main_ui_threading.py by radon

            Cyclomatic Complexity

            Cyclomatic Complexity corresponds to the number of decisions a block of code contains plus 1. This number (also called McCabe number) is equal to the number of linearly independent paths through the code. This number can be used as a guide when testing conditional logic in blocks.

            Radon analyzes the AST tree of a Python program to compute Cyclomatic Complexity. Statements have the following effects on Cyclomatic Complexity:

            Construct Effect on CC Reasoning
            if +1 An if statement is a single decision.
            elif +1 The elif statement adds another decision.
            else +0 The else statement does not cause a new decision. The decision is at the if.
            for +1 There is a decision at the start of the loop.
            while +1 There is a decision at the while statement.
            except +1 Each except branch adds a new conditional path of execution.
            finally +0 The finally block is unconditionally executed.
            with +1 The with statement roughly corresponds to a try/except block (see PEP 343 for details).
            assert +1 The assert statement internally roughly equals a conditional statement.
            Comprehension +1 A list/set/dict comprehension of generator expression is equivalent to a for loop.
            Boolean Operator +1 Every boolean operator (and, or) adds a decision point.

            Source: http://radon.readthedocs.org/en/latest/intro.html

            Cyclomatic complexity is too high in method __read_props. (10)
            Open

                def __read_props(self):
            
                    def _loword(dword):
                        return dword & 0x0000ffff
            
            
            Severity: Minor
            Found in emft/core/path.py by radon

            Cyclomatic Complexity

            Cyclomatic Complexity corresponds to the number of decisions a block of code contains plus 1. This number (also called McCabe number) is equal to the number of linearly independent paths through the code. This number can be used as a guide when testing conditional logic in blocks.

            Radon analyzes the AST tree of a Python program to compute Cyclomatic Complexity. Statements have the following effects on Cyclomatic Complexity:

            Construct Effect on CC Reasoning
            if +1 An if statement is a single decision.
            elif +1 The elif statement adds another decision.
            else +0 The else statement does not cause a new decision. The decision is at the if.
            for +1 There is a decision at the start of the loop.
            while +1 There is a decision at the while statement.
            except +1 Each except branch adds a new conditional path of execution.
            finally +0 The finally block is unconditionally executed.
            with +1 The with statement roughly corresponds to a try/except block (see PEP 343 for details).
            assert +1 The assert statement internally roughly equals a conditional statement.
            Comprehension +1 A list/set/dict comprehension of generator expression is equivalent to a for loop.
            Boolean Operator +1 Every boolean operator (and, or) adds a decision point.

            Source: http://radon.readthedocs.org/en/latest/intro.html

            File dcs_installs.py has 270 lines of code (exceeds 250 allowed). Consider refactoring.
            Open

            # coding=utf-8
            import os
            import re
            
            from emft.config import Config
            Severity: Minor
            Found in emft/core/filesystem/dcs_installs.py - About 2 hrs to fix
            • Create a ticket

              Function contextMenuEvent has a Cognitive Complexity of 18 (exceeds 5 allowed). Consider refactoring.
              Open

                  def contextMenuEvent(self, event):  # noqa: N802
                      LOGGER.debug('in')
                      if self._menu:
                          LOGGER.debug('menu')
                          if self.selectionModel().selection().indexes():
              Severity: Minor
              Found in emft/gui/base.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

              Severity
              Category
              Status
              Source
              Language