jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py

Summary

Maintainability
F
1 mo
Test Coverage

Function propertyChange has a Cognitive Complexity of 687 (exceeds 20 allowed). Consider refactoring.
Open

    def propertyChange(self, event):
        # Customize bellow for throttles calls:        
        if (event.propertyName == "Value") :  # USB
            if (event.oldValue.getController() == self.desiredController ) :
                component = event.oldValue.getComponent().toString()

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 USBThrottle.py has 528 lines of code (exceeds 300 allowed). Consider refactoring.
Open

#
# Use a USB device as a throttle
#
# Author: Lionel Jeanson, adapted from Bob Jacobsen, copyright 2008/2009
#

    Function init has 26 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        def init(self):
            self.getContext().addPropertyChangeListener(self) #ThrottleFrame change
            self.getContext().getCurrentThrottleFrame().getAddressPanel().addAddressListener(self) # change of throttle in Current frame
            self.addressPanel = self.getContext().getCurrentThrottleFrame().getAddressPanel()
            self.throttle = self.addressPanel.getThrottle() # the throttle

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

                          try:
                              if ((component == self.driver.componentF6) and (value == self.driver.valueF6)) :
                                  self.throttle.setF6( not self.throttle.getF6() )
                              if ((self.roster != None) and (not self.roster.getFunctionLockable(6)) and (component == self.driver.componentF6) and (value == self.driver.valueF6Off)) :
                                  self.throttle.setF6( not self.throttle.getF6() )
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 190..195
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 197..202
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 204..209
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 211..216
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 218..223
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 225..230
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 239..244
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 246..251
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 253..258
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 260..265
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 267..272
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 274..279
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 281..286
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 288..293
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 295..300
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 302..307
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 309..314
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 316..321
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 323..328
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 331..336
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 338..343
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 345..350
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 352..357
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 359..364
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 366..371
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 373..378
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 380..385
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 387..392
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 394..399

      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 130.

      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

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

                          try:
                              if ((component == self.driver.componentF21) and (value == self.driver.valueF21)) :
                                  self.throttle.setF21( not self.throttle.getF21() )
                              if ((self.roster != None) and (not self.roster.getFunctionLockable(21)) and (component == self.driver.componentF21) and (value == self.driver.valueF21Off)) :
                                  self.throttle.setF21( not self.throttle.getF21() )
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 190..195
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 197..202
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 204..209
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 211..216
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 218..223
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 225..230
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 232..237
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 239..244
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 246..251
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 253..258
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 260..265
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 267..272
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 274..279
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 281..286
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 288..293
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 295..300
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 302..307
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 309..314
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 316..321
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 323..328
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 331..336
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 345..350
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 352..357
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 359..364
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 366..371
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 373..378
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 380..385
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 387..392
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 394..399

      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 130.

      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

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

                          try:
                              if ((component == self.driver.componentF25) and (value == self.driver.valueF25)) :
                                  self.throttle.setF25( not self.throttle.getF25() )
                              if ((self.roster != None) and (not self.roster.getFunctionLockable(25)) and (component == self.driver.componentF25) and (value == self.driver.valueF25Off)) :
                                  self.throttle.setF25( not self.throttle.getF25() )
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 190..195
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 197..202
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 204..209
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 211..216
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 218..223
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 225..230
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 232..237
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 239..244
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 246..251
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 253..258
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 260..265
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 267..272
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 274..279
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 281..286
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 288..293
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 295..300
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 302..307
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 309..314
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 316..321
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 323..328
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 331..336
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 338..343
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 345..350
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 352..357
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 359..364
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 373..378
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 380..385
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 387..392
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 394..399

      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 130.

      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

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

                          try:
                              if ((component == self.driver.componentF8) and (value == self.driver.valueF8)) :
                                  self.throttle.setF8( not self.throttle.getF8() )
                              if ((self.roster != None) and (not self.roster.getFunctionLockable(8)) and (component == self.driver.componentF8) and (value == self.driver.valueF8Off)) :
                                  self.throttle.setF8( not self.throttle.getF8() )
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 190..195
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 197..202
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 204..209
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 211..216
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 218..223
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 225..230
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 232..237
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 239..244
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 253..258
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 260..265
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 267..272
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 274..279
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 281..286
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 288..293
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 295..300
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 302..307
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 309..314
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 316..321
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 323..328
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 331..336
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 338..343
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 345..350
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 352..357
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 359..364
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 366..371
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 373..378
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 380..385
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 387..392
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 394..399

      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 130.

      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

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

                          try:
                              if ((component == self.driver.componentF9) and (value == self.driver.valueF9)) :
                                  self.throttle.setF9( not self.throttle.getF9() )
                              if ((self.roster != None) and (not self.roster.getFunctionLockable(9)) and (component == self.driver.componentF9) and (value == self.driver.valueF9Off)) :
                                  self.throttle.setF9( not self.throttle.getF9() )
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 190..195
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 197..202
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 204..209
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 211..216
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 218..223
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 225..230
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 232..237
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 239..244
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 246..251
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 260..265
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 267..272
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 274..279
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 281..286
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 288..293
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 295..300
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 302..307
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 309..314
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 316..321
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 323..328
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 331..336
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 338..343
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 345..350
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 352..357
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 359..364
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 366..371
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 373..378
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 380..385
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 387..392
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 394..399

      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 130.

      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

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

                          try:
                              if ((component == self.driver.componentF14) and (value == self.driver.valueF14)) :
                                  self.throttle.setF14( not self.throttle.getF14() )
                              if ((self.roster != None) and (not self.roster.getFunctionLockable(14)) and (component == self.driver.componentF14) and (value == self.driver.valueF14Off)) :
                                  self.throttle.setF14( not self.throttle.getF14() )
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 190..195
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 197..202
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 204..209
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 211..216
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 218..223
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 225..230
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 232..237
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 239..244
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 246..251
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 253..258
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 260..265
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 267..272
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 274..279
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 281..286
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 295..300
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 302..307
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 309..314
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 316..321
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 323..328
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 331..336
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 338..343
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 345..350
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 352..357
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 359..364
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 366..371
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 373..378
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 380..385
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 387..392
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 394..399

      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 130.

      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

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

                          try:
                              if ((component == self.driver.componentF17) and (value == self.driver.valueF17)) :
                                  self.throttle.setF17( not self.throttle.getF17() )
                              if ((self.roster != None) and (not self.roster.getFunctionLockable(17)) and (component == self.driver.componentF17) and (value == self.driver.valueF17Off)) :
                                  self.throttle.setF17( not self.throttle.getF17() )
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 190..195
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 197..202
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 204..209
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 211..216
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 218..223
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 225..230
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 232..237
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 239..244
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 246..251
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 253..258
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 260..265
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 267..272
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 274..279
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 281..286
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 288..293
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 295..300
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 302..307
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 316..321
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 323..328
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 331..336
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 338..343
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 345..350
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 352..357
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 359..364
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 366..371
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 373..378
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 380..385
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 387..392
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 394..399

      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 130.

      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

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

                          try:
                              if ((component == self.driver.componentF18) and (value == self.driver.valueF18)) :
                                  self.throttle.setF18( not self.throttle.getF18() )
                              if ((self.roster != None) and (not self.roster.getFunctionLockable(18)) and (component == self.driver.componentF18) and (value == self.driver.valueF18Off)) :
                                  self.throttle.setF18( not self.throttle.getF18() )
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 190..195
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 197..202
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 204..209
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 211..216
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 218..223
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 225..230
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 232..237
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 239..244
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 246..251
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 253..258
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 260..265
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 267..272
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 274..279
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 281..286
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 288..293
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 295..300
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 302..307
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 309..314
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 323..328
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 331..336
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 338..343
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 345..350
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 352..357
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 359..364
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 366..371
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 373..378
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 380..385
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 387..392
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 394..399

      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 130.

      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

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

                          try:
                              if ((component == self.driver.componentF4) and (value == self.driver.valueF4)) :
                                  self.throttle.setF4( not self.throttle.getF4() )
                              if ((self.roster != None) and (not self.roster.getFunctionLockable(4)) and (component == self.driver.componentF4) and (value == self.driver.valueF4Off)) :
                                  self.throttle.setF4( not self.throttle.getF4() )
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 190..195
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 197..202
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 204..209
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 211..216
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 225..230
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 232..237
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 239..244
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 246..251
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 253..258
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 260..265
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 267..272
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 274..279
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 281..286
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 288..293
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 295..300
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 302..307
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 309..314
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 316..321
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 323..328
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 331..336
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 338..343
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 345..350
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 352..357
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 359..364
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 366..371
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 373..378
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 380..385
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 387..392
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 394..399

      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 130.

      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

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

                          try:
                              if ((component == self.driver.componentF1) and (value == self.driver.valueF1)) :
                                  self.throttle.setF1( not self.throttle.getF1() )
                              if ((self.roster != None) and (not self.roster.getFunctionLockable(1)) and (component == self.driver.componentF1) and (value == self.driver.valueF1Off)) :
                                  self.throttle.setF1( not self.throttle.getF1() )
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 190..195
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 204..209
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 211..216
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 218..223
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 225..230
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 232..237
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 239..244
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 246..251
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 253..258
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 260..265
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 267..272
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 274..279
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 281..286
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 288..293
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 295..300
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 302..307
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 309..314
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 316..321
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 323..328
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 331..336
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 338..343
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 345..350
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 352..357
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 359..364
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 366..371
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 373..378
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 380..385
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 387..392
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 394..399

      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 130.

      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

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

                          try:
                              if ((component == self.driver.componentF2) and (value == self.driver.valueF2)) :
                                  self.throttle.setF2( not self.throttle.getF2() )
                              if ((self.roster != None) and (not self.roster.getFunctionLockable(2)) and (component == self.driver.componentF2) and (value == self.driver.valueF2Off)) :
                                  self.throttle.setF2( not self.throttle.getF2() )
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 190..195
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 197..202
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 211..216
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 218..223
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 225..230
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 232..237
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 239..244
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 246..251
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 253..258
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 260..265
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 267..272
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 274..279
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 281..286
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 288..293
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 295..300
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 302..307
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 309..314
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 316..321
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 323..328
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 331..336
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 338..343
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 345..350
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 352..357
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 359..364
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 366..371
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 373..378
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 380..385
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 387..392
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 394..399

      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 130.

      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

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

                          try:
                              if ((component == self.driver.componentF19) and (value == self.driver.valueF19)) :
                                  self.throttle.setF19( not self.throttle.getF19() )
                              if ((self.roster != None) and (not self.roster.getFunctionLockable(19)) and (component == self.driver.componentF19) and (value == self.driver.valueF19Off)) :
                                  self.throttle.setF19( not self.throttle.getF19() )
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 190..195
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 197..202
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 204..209
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 211..216
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 218..223
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 225..230
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 232..237
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 239..244
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 246..251
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 253..258
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 260..265
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 267..272
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 274..279
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 281..286
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 288..293
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 295..300
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 302..307
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 309..314
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 316..321
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 331..336
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 338..343
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 345..350
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 352..357
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 359..364
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 366..371
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 373..378
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 380..385
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 387..392
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 394..399

      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 130.

      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

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

                          try:
                              if ((component == self.driver.componentF22) and (value == self.driver.valueF22)) :
                                  self.throttle.setF22( not self.throttle.getF22() )
                              if ((self.roster != None) and (not self.roster.getFunctionLockable(22)) and (component == self.driver.componentF22) and (value == self.driver.valueF22Off)) :
                                  self.throttle.setF22( not self.throttle.getF22() )
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 190..195
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 197..202
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 204..209
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 211..216
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 218..223
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 225..230
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 232..237
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 239..244
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 246..251
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 253..258
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 260..265
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 267..272
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 274..279
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 281..286
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 288..293
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 295..300
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 302..307
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 309..314
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 316..321
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 323..328
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 331..336
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 338..343
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 352..357
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 359..364
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 366..371
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 373..378
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 380..385
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 387..392
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 394..399

      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 130.

      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

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

                          try:
                              if ((component == self.driver.componentF23) and (value == self.driver.valueF23)) :
                                  self.throttle.setF23( not self.throttle.getF23() )
                              if ((self.roster != None) and (not self.roster.getFunctionLockable(23)) and (component == self.driver.componentF23) and (value == self.driver.valueF23Off)) :
                                  self.throttle.setF23( not self.throttle.getF23() )
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 190..195
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 197..202
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 204..209
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 211..216
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 218..223
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 225..230
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 232..237
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 239..244
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 246..251
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 253..258
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 260..265
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 267..272
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 274..279
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 281..286
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 288..293
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 295..300
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 302..307
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 309..314
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 316..321
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 323..328
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 331..336
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 338..343
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 345..350
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 359..364
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 366..371
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 373..378
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 380..385
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 387..392
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 394..399

      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 130.

      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

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

                          try:
                              if ((component == self.driver.componentF12) and (value == self.driver.valueF12)) :
                                  self.throttle.setF12( not self.throttle.getF12() )
                              if ((self.roster != None) and (not self.roster.getFunctionLockable(12)) and (component == self.driver.componentF12) and (value == self.driver.valueF12Off)) :
                                  self.throttle.setF12( not self.throttle.getF12() )
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 190..195
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 197..202
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 204..209
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 211..216
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 218..223
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 225..230
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 232..237
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 239..244
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 246..251
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 253..258
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 260..265
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 267..272
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 281..286
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 288..293
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 295..300
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 302..307
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 309..314
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 316..321
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 323..328
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 331..336
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 338..343
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 345..350
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 352..357
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 359..364
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 366..371
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 373..378
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 380..385
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 387..392
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 394..399

      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 130.

      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

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

                          try:
                              if ((component == self.driver.componentF5) and (value == self.driver.valueF5)) :
                                  self.throttle.setF5( not self.throttle.getF5() )
                              if ((self.roster != None) and (not self.roster.getFunctionLockable(5)) and (component == self.driver.componentF5) and (value == self.driver.valueF5Off)) :
                                  self.throttle.setF5( not self.throttle.getF5() )
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 190..195
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 197..202
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 204..209
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 211..216
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 218..223
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 232..237
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 239..244
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 246..251
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 253..258
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 260..265
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 267..272
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 274..279
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 281..286
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 288..293
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 295..300
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 302..307
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 309..314
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 316..321
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 323..328
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 331..336
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 338..343
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 345..350
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 352..357
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 359..364
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 366..371
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 373..378
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 380..385
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 387..392
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 394..399

      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 130.

      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

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

                          try:
                              if ((component == self.driver.componentF13) and (value == self.driver.valueF13)) :
                                  self.throttle.setF13( not self.throttle.getF13() )
                              if ((self.roster != None) and (not self.roster.getFunctionLockable(13)) and (component == self.driver.componentF13) and (value == self.driver.valueF13Off)) :
                                  self.throttle.setF13( not self.throttle.getF13() )
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 190..195
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 197..202
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 204..209
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 211..216
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 218..223
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 225..230
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 232..237
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 239..244
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 246..251
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 253..258
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 260..265
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 267..272
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 274..279
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 288..293
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 295..300
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 302..307
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 309..314
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 316..321
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 323..328
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 331..336
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 338..343
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 345..350
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 352..357
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 359..364
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 366..371
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 373..378
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 380..385
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 387..392
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 394..399

      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 130.

      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

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

                          try:
                              if ((component == self.driver.componentF3) and (value == self.driver.valueF3)) :
                                  self.throttle.setF3( not self.throttle.getF3() )
                              if ((self.roster != None) and (not self.roster.getFunctionLockable(3)) and (component == self.driver.componentF3) and (value == self.driver.valueF3Off)) :
                                  self.throttle.setF3( not self.throttle.getF3() )
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 190..195
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 197..202
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 204..209
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 218..223
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 225..230
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 232..237
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 239..244
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 246..251
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 253..258
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 260..265
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 267..272
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 274..279
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 281..286
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 288..293
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 295..300
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 302..307
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 309..314
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 316..321
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 323..328
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 331..336
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 338..343
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 345..350
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 352..357
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 359..364
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 366..371
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 373..378
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 380..385
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 387..392
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 394..399

      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 130.

      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

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

                          try:
                              if ((component == self.driver.componentF15) and (value == self.driver.valueF15)) :
                                  self.throttle.setF15( not self.throttle.getF15() )
                              if ((self.roster != None) and (not self.roster.getFunctionLockable(15)) and (component == self.driver.componentF15) and (value == self.driver.valueF15Off)) :
                                  self.throttle.setF15( not self.throttle.getF15() )
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 190..195
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 197..202
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 204..209
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 211..216
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 218..223
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 225..230
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 232..237
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 239..244
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 246..251
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 253..258
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 260..265
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 267..272
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 274..279
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 281..286
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 288..293
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 302..307
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 309..314
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 316..321
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 323..328
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 331..336
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 338..343
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 345..350
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 352..357
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 359..364
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 366..371
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 373..378
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 380..385
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 387..392
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 394..399

      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 130.

      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

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

                          try:
                              if ((component == self.driver.componentF16) and (value == self.driver.valueF16)) :
                                  self.throttle.setF16( not self.throttle.getF16() )
                              if ((self.roster != None) and (not self.roster.getFunctionLockable(16)) and (component == self.driver.componentF16) and (value == self.driver.valueF16Off)) :
                                  self.throttle.setF16( not self.throttle.getF16() )
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 190..195
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 197..202
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 204..209
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 211..216
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 218..223
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 225..230
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 232..237
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 239..244
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 246..251
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 253..258
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 260..265
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 267..272
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 274..279
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 281..286
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 288..293
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 295..300
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 309..314
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 316..321
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 323..328
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 331..336
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 338..343
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 345..350
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 352..357
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 359..364
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 366..371
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 373..378
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 380..385
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 387..392
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 394..399

      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 130.

      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

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

                          try:
                              if ((component == self.driver.componentF27) and (value == self.driver.valueF27)) :
                                  self.throttle.setF27( not self.throttle.getF27() )
                              if ((self.roster != None) and (not self.roster.getFunctionLockable(27)) and (component == self.driver.componentF27) and (value == self.driver.valueF27Off)) :
                                  self.throttle.setF27( not self.throttle.getF27() )
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 190..195
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 197..202
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 204..209
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 211..216
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 218..223
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 225..230
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 232..237
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 239..244
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 246..251
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 253..258
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 260..265
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 267..272
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 274..279
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 281..286
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 288..293
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 295..300
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 302..307
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 309..314
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 316..321
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 323..328
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 331..336
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 338..343
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 345..350
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 352..357
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 359..364
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 366..371
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 373..378
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 387..392
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 394..399

      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 130.

      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

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

                          try:
                              if ((component == self.driver.componentF20) and (value == self.driver.valueF20)) :
                                  self.throttle.setF20( not self.throttle.getF20() )
                              if ((self.roster != None) and (not self.roster.getFunctionLockable(20)) and (component == self.driver.componentF20) and (value == self.driver.valueF20Off)) :
                                  self.throttle.setF20( not self.throttle.getF20() )
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 190..195
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 197..202
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 204..209
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 211..216
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 218..223
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 225..230
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 232..237
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 239..244
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 246..251
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 253..258
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 260..265
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 267..272
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 274..279
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 281..286
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 288..293
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 295..300
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 302..307
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 309..314
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 316..321
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 323..328
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 338..343
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 345..350
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 352..357
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 359..364
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 366..371
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 373..378
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 380..385
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 387..392
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 394..399

      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 130.

      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

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

                          try:
                              if ((component == self.driver.componentF10) and (value == self.driver.valueF10)) :
                                  self.throttle.setF10( not self.throttle.getF10() )
                              if ((self.roster != None) and (not self.roster.getFunctionLockable(10)) and (component == self.driver.componentF10) and (value == self.driver.valueF10Off)) :
                                  self.throttle.setF10( not self.throttle.getF10() )
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 190..195
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 197..202
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 204..209
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 211..216
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 218..223
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 225..230
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 232..237
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 239..244
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 246..251
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 253..258
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 267..272
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 274..279
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 281..286
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 288..293
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 295..300
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 302..307
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 309..314
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 316..321
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 323..328
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 331..336
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 338..343
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 345..350
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 352..357
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 359..364
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 366..371
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 373..378
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 380..385
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 387..392
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 394..399

      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 130.

      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

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

                          try:
                              if ((component == self.driver.componentF11) and (value == self.driver.valueF11)) :
                                  self.throttle.setF11( not self.throttle.getF11() )
                              if ((self.roster != None) and (not self.roster.getFunctionLockable(11)) and (component == self.driver.componentF11) and (value == self.driver.valueF11Off)) :
                                  self.throttle.setF11( not self.throttle.getF11() )
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 190..195
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 197..202
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 204..209
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 211..216
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 218..223
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 225..230
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 232..237
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 239..244
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 246..251
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 253..258
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 260..265
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 274..279
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 281..286
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 288..293
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 295..300
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 302..307
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 309..314
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 316..321
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 323..328
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 331..336
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 338..343
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 345..350
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 352..357
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 359..364
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 366..371
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 373..378
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 380..385
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 387..392
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 394..399

      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 130.

      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

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

                          try:
                              if ((component == self.driver.componentF28) and (value == self.driver.valueF28)) :
                                  self.throttle.setF28( not self.throttle.getF28() )
                              if ((self.roster != None) and (not self.roster.getFunctionLockable(28)) and (component == self.driver.componentF28) and (value == self.driver.valueF28Off)) :
                                  self.throttle.setF28( not self.throttle.getF28() )
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 190..195
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 197..202
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 204..209
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 211..216
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 218..223
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 225..230
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 232..237
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 239..244
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 246..251
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 253..258
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 260..265
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 267..272
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 274..279
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 281..286
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 288..293
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 295..300
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 302..307
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 309..314
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 316..321
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 323..328
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 331..336
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 338..343
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 345..350
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 352..357
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 359..364
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 366..371
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 373..378
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 380..385
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 394..399

      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 130.

      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

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

                          try:
                              if ((component == self.driver.componentF24) and (value == self.driver.valueF24)) :
                                  self.throttle.setF24( not self.throttle.getF24() )
                              if ((self.roster != None) and (not self.roster.getFunctionLockable(24)) and (component == self.driver.componentF24) and (value == self.driver.valueF24Off)) :
                                  self.throttle.setF24( not self.throttle.getF24() )
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 190..195
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 197..202
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 204..209
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 211..216
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 218..223
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 225..230
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 232..237
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 239..244
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 246..251
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 253..258
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 260..265
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 267..272
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 274..279
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 281..286
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 288..293
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 295..300
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 302..307
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 309..314
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 316..321
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 323..328
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 331..336
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 338..343
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 345..350
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 352..357
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 366..371
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 373..378
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 380..385
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 387..392
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 394..399

      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 130.

      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

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

                          try:
                              if ((component == self.driver.componentF0) and (value == self.driver.valueF0)) :
                                  self.throttle.setF0( not self.throttle.getF0() )
                              if ((self.roster != None) and (not self.roster.getFunctionLockable(0)) and (component == self.driver.componentF0) and (value == self.driver.valueF0Off)) :
                                  self.throttle.setF0( not self.throttle.getF0() )
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 197..202
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 204..209
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 211..216
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 218..223
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 225..230
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 232..237
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 239..244
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 246..251
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 253..258
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 260..265
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 267..272
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 274..279
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 281..286
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 288..293
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 295..300
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 302..307
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 309..314
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 316..321
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 323..328
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 331..336
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 338..343
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 345..350
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 352..357
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 359..364
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 366..371
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 373..378
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 380..385
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 387..392
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 394..399

      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 130.

      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

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

                          try:
                              if ((component == self.driver.componentF29) and (value == self.driver.valueF29)) :
                                  self.throttle.setF29( not self.throttle.getF29() )
                              if ((self.roster != None) and (not self.roster.getFunctionLockable(29)) and (component == self.driver.componentF29) and (value == self.driver.valueF29Off)) :
                                  self.throttle.setF29( not self.throttle.getF29() )
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 190..195
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 197..202
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 204..209
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 211..216
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 218..223
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 225..230
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 232..237
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 239..244
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 246..251
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 253..258
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 260..265
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 267..272
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 274..279
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 281..286
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 288..293
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 295..300
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 302..307
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 309..314
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 316..321
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 323..328
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 331..336
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 338..343
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 345..350
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 352..357
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 359..364
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 366..371
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 373..378
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 380..385
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 387..392

      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 130.

      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

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

                          try:
                              if ((component == self.driver.componentF7) and (value == self.driver.valueF7)) :
                                  self.throttle.setF7( not self.throttle.getF7() )
                              if ((self.roster != None) and (not self.roster.getFunctionLockable(7)) and (component == self.driver.componentF7) and (value == self.driver.valueF7Off)) :
                                  self.throttle.setF7( not self.throttle.getF7() )
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 190..195
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 197..202
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 204..209
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 211..216
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 218..223
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 225..230
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 232..237
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 246..251
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 253..258
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 260..265
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 267..272
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 274..279
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 281..286
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 288..293
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 295..300
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 302..307
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 309..314
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 316..321
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 323..328
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 331..336
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 338..343
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 345..350
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 352..357
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 359..364
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 366..371
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 373..378
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 380..385
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 387..392
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 394..399

      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 130.

      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

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

                          try:
                              if ((component == self.driver.componentF26) and (value == self.driver.valueF26)) :
                                  self.throttle.setF26( not self.throttle.getF26() )
                              if ((self.roster != None) and (not self.roster.getFunctionLockable(26)) and (component == self.driver.componentF26) and (value == self.driver.valueF26Off)) :
                                  self.throttle.setF26( not self.throttle.getF26() )
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 190..195
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 197..202
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 204..209
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 211..216
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 218..223
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 225..230
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 232..237
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 239..244
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 246..251
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 253..258
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 260..265
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 267..272
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 274..279
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 281..286
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 288..293
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 295..300
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 302..307
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 309..314
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 316..321
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 323..328
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 331..336
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 338..343
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 345..350
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 352..357
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 359..364
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 366..371
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 380..385
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 387..392
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 394..399

      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 130.

      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

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

                          try:  # STOP
                              if ((component == self.driver.componentStopSpeed) and (value == self.driver.valueStopSpeed)) :
                                  if ( Calendar.getInstance().getTimeInMillis() - self.lastTimeStopButton < delay4doubleTap ) : 
                                      self.throttle.setSpeedSetting(EStopSpeed) # EStop on double tap
                                  else:
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 174..181

      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 101.

      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

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

                          try:   # CRUISE
                              if ((component == self.driver.componentCruiseSpeed) and (value == self.driver.valueCruiseSpeed)) :
                                  if ( Calendar.getInstance().getTimeInMillis() - self.lastTimeCruiseButton < delay4doubleTap ) : # EStop on double tap
                                      self.throttle.setSpeedSetting(speedMaxSpeed) # Max speed on double tap
                                  else:
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 150..157

      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 101.

      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

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

                          try:   # EStop
                              if ((component == self.driver.componentEStopSpeedBis) and (value == self.driver.valueEStopSpeedBis)):
                                  self.throttle.setSpeedSetting(EStopSpeed)
                          except AttributeError:
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 159..162
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 169..172
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 183..186

      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 48.

      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

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

                          try:   # MAX
                              if ((component == self.driver.componentMaxSpeed) and (value == self.driver.valueMaxSpeed)) :
                                  self.throttle.setSpeedSetting(speedMaxSpeed)
                          except AttributeError:
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 159..162
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 164..167
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 169..172

      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 48.

      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

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

                          try:   # SLOW
                              if ((component == self.driver.componentSlowSpeed) and (value == self.driver.valueSlowSpeed)) :
                                  self.throttle.setSpeedSetting(speedSlowSpeed)
                          except AttributeError:
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 159..162
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 164..167
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 183..186

      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 48.

      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

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

                          try:   # EStop
                              if ((component == self.driver.componentEStopSpeed) and (value == self.driver.valueEStopSpeed)):
                                  self.throttle.setSpeedSetting(EStopSpeed)
                          except AttributeError:
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 164..167
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 169..172
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 183..186

      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 48.

      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

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

                          try:
                              # Request a throttle
                              if ((component == self.driver.componentRosterSelect) and (value == self.driver.valueRosterSelect)):
                                  self.addressPanel.selectRosterEntry()
                          except AttributeError:
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 97..100

      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 46.

      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

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

                          try:
                              if ((component == self.driver.componentThrottleRelease) and (value == self.driver.valueThrottleRelease)):
                                  self.addressPanel.dispatchAddress()
                          except AttributeError:
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 87..91

      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 46.

      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

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

                          if  ((component == self.driver.componentPreviousRunningThrottleFrame) and (value == self.driver.valuePreviousRunningThrottleFrame)) : #PREVIOUS RUNNING
                              self.getContext().previousRunningThrottleFrame()  
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 61..62
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 63..64
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 65..66

      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 40.

      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

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

                          if ((component == self.driver.componentNextThrottleFrame) and (value == self.driver.valueNextThrottleFrame)) : #NEXT
                              self.getContext().nextThrottleFrame()
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 63..64
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 65..66
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 67..68

      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 40.

      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

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

                          if  ((component == self.driver.componentPreviousThrottleFrame) and (value == self.driver.valuePreviousThrottleFrame)) : #PREVIOUS
                              self.getContext().previousThrottleFrame()
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 61..62
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 65..66
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 67..68

      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 40.

      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

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

                          if ((component == self.driver.componentNextRunningThrottleFrame) and (value == self.driver.valueNextRunningThrottleFrame)) : #NEXT RUNNING
                              self.getContext().nextRunningThrottleFrame()
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 61..62
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 63..64
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 67..68

      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 40.

      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

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

                                  if ((component == self.driver.componentSpeedDecrease) and (value == self.driver.valueSpeedDecrease)) :
                                      self.speedAction.setSpeedIncrement( -0.03 )
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 106..107

      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 40.

      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

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

                                  if ((component == self.driver.componentSpeedIncrease) and (value == self.driver.valueSpeedIncrease)) :
                                      self.speedAction.setSpeedIncrement( 0.03 )
      jython/Jynstruments/ThrottleWindowToolBar/USBThrottle.jyn/USBThrottle.py on lines 108..109

      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 40.

      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

      There are no issues that match your filters.

      Category
      Status