paypay/paypayopa-sdk-python

View on GitHub

Showing 48 of 48 total issues

Function pre_authorize_create has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
Open

    def pre_authorize_create(self, data={}, **kwargs):
        url = "{}/{}".format(self.base_url, 'preauthorize')
        if "requestedAt" not in data:
            data['requestedAt'] = int(datetime.datetime.now().timestamp())
        if "merchantPaymentId" not in data:
Severity: Minor
Found in paypayopa/resources/preauth.py - About 45 mins to fix

Cognitive Complexity

Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

A method's cognitive complexity is based on a few simple rules:

  • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
  • Code is considered more complex for each "break in the linear flow of the code"
  • Code is considered more complex when "flow breaking structures are nested"

Further reading

Identical blocks of code found in 9 locations. Consider refactoring.
Open

        if "requestedAt" not in data:
            data['requestedAt'] = int(datetime.datetime.now().timestamp())
Severity: Major
Found in paypayopa/resources/payment.py and 8 other locations - About 45 mins to fix
paypayopa/resources/code.py on lines 16..17
paypayopa/resources/payment.py on lines 14..15
paypayopa/resources/payment.py on lines 46..47
paypayopa/resources/payment.py on lines 76..77
paypayopa/resources/payment.py on lines 125..126
paypayopa/resources/pending.py on lines 14..15
paypayopa/resources/pending.py on lines 52..53
paypayopa/resources/preauth.py on lines 14..15

Duplicated Code

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

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

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

Tuning

This issue has a mass of 35.

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

Identical blocks of code found in 9 locations. Consider refactoring.
Open

        if "requestedAt" not in data:
            data['requestedAt'] = int(datetime.datetime.now().timestamp())
Severity: Major
Found in paypayopa/resources/payment.py and 8 other locations - About 45 mins to fix
paypayopa/resources/code.py on lines 16..17
paypayopa/resources/payment.py on lines 14..15
paypayopa/resources/payment.py on lines 76..77
paypayopa/resources/payment.py on lines 102..103
paypayopa/resources/payment.py on lines 125..126
paypayopa/resources/pending.py on lines 14..15
paypayopa/resources/pending.py on lines 52..53
paypayopa/resources/preauth.py on lines 14..15

Duplicated Code

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

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

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

Tuning

This issue has a mass of 35.

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

Identical blocks of code found in 9 locations. Consider refactoring.
Open

        if "requestedAt" not in data:
            data['requestedAt'] = int(datetime.datetime.now().timestamp())
Severity: Major
Found in paypayopa/resources/preauth.py and 8 other locations - About 45 mins to fix
paypayopa/resources/code.py on lines 16..17
paypayopa/resources/payment.py on lines 14..15
paypayopa/resources/payment.py on lines 46..47
paypayopa/resources/payment.py on lines 76..77
paypayopa/resources/payment.py on lines 102..103
paypayopa/resources/payment.py on lines 125..126
paypayopa/resources/pending.py on lines 14..15
paypayopa/resources/pending.py on lines 52..53

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

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

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

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

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

Refactorings

Further Reading

Function capture_payment has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
Open

    def capture_payment(self, data=None, **kwargs):
        if data is None:
            data = {}
        url = "{}/{}".format('/v2/payments', 'capture')
        if "requestedAt" not in data:
Severity: Minor
Found in paypayopa/resources/payment.py - About 45 mins to fix

Cognitive Complexity

Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

A method's cognitive complexity is based on a few simple rules:

  • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
  • Code is considered more complex for each "break in the linear flow of the code"
  • Code is considered more complex when "flow breaking structures are nested"

Further reading

Function encode_jwt has 6 arguments (exceeds 4 allowed). Consider refactoring.
Open

    def encode_jwt(self, secret=str, scope="direct_debit",
Severity: Minor
Found in paypayopa/client.py - About 45 mins to fix

    Identical blocks of code found in 9 locations. Consider refactoring.
    Open

            if "requestedAt" not in data:
                data['requestedAt'] = int(datetime.datetime.now().timestamp())
    Severity: Major
    Found in paypayopa/resources/pending.py and 8 other locations - About 45 mins to fix
    paypayopa/resources/code.py on lines 16..17
    paypayopa/resources/payment.py on lines 14..15
    paypayopa/resources/payment.py on lines 46..47
    paypayopa/resources/payment.py on lines 76..77
    paypayopa/resources/payment.py on lines 102..103
    paypayopa/resources/payment.py on lines 125..126
    paypayopa/resources/pending.py on lines 14..15
    paypayopa/resources/preauth.py on lines 14..15

    Duplicated Code

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

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

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

    Tuning

    This issue has a mass of 35.

    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

    Identical blocks of code found in 9 locations. Consider refactoring.
    Open

            if "requestedAt" not in data:
                data['requestedAt'] = int(datetime.datetime.now().timestamp())
    Severity: Major
    Found in paypayopa/resources/pending.py and 8 other locations - About 45 mins to fix
    paypayopa/resources/code.py on lines 16..17
    paypayopa/resources/payment.py on lines 14..15
    paypayopa/resources/payment.py on lines 46..47
    paypayopa/resources/payment.py on lines 76..77
    paypayopa/resources/payment.py on lines 102..103
    paypayopa/resources/payment.py on lines 125..126
    paypayopa/resources/pending.py on lines 52..53
    paypayopa/resources/preauth.py on lines 14..15

    Duplicated Code

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

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

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

    Tuning

    This issue has a mass of 35.

    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

    Identical blocks of code found in 8 locations. Consider refactoring.
    Open

            if type(data["amount"]["amount"]) != int:
                raise ValueError("\x1b[31m Amount should be of type integer"
    Severity: Major
    Found in paypayopa/resources/payment.py and 7 other locations - About 35 mins to fix
    paypayopa/resources/code.py on lines 24..25
    paypayopa/resources/payment.py on lines 22..23
    paypayopa/resources/payment.py on lines 90..91
    paypayopa/resources/payment.py on lines 113..114
    paypayopa/resources/pending.py on lines 25..26
    paypayopa/resources/pending.py on lines 60..61
    paypayopa/resources/preauth.py on lines 28..29

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

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

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

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

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

    Refactorings

    Further Reading

    Function create_continuous_payment has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
    Open

        def create_continuous_payment(self, data=None, **kwargs):
            if data is None:
                data = {}
            url = "{}/{}".format('/v1/subscription', 'payments')
            if "requestedAt" not in data:
    Severity: Minor
    Found in paypayopa/resources/payment.py - About 35 mins to fix

    Cognitive Complexity

    Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

    A method's cognitive complexity is based on a few simple rules:

    • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
    • Code is considered more complex for each "break in the linear flow of the code"
    • Code is considered more complex when "flow breaking structures are nested"

    Further reading

    Identical blocks of code found in 8 locations. Consider refactoring.
    Open

            if type(data["amount"]["amount"]) != int:
                raise ValueError("\x1b[31m Amount should be of type integer"
    Severity: Major
    Found in paypayopa/resources/pending.py and 7 other locations - About 35 mins to fix
    paypayopa/resources/code.py on lines 24..25
    paypayopa/resources/payment.py on lines 22..23
    paypayopa/resources/payment.py on lines 57..58
    paypayopa/resources/payment.py on lines 90..91
    paypayopa/resources/payment.py on lines 113..114
    paypayopa/resources/pending.py on lines 60..61
    paypayopa/resources/preauth.py on lines 28..29

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

    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

    Identical blocks of code found in 8 locations. Consider refactoring.
    Open

            if type(data["amount"]["amount"]) != int:
                raise ValueError("\x1b[31m Amount should be of type integer"
    Severity: Major
    Found in paypayopa/resources/pending.py and 7 other locations - About 35 mins to fix
    paypayopa/resources/code.py on lines 24..25
    paypayopa/resources/payment.py on lines 22..23
    paypayopa/resources/payment.py on lines 57..58
    paypayopa/resources/payment.py on lines 90..91
    paypayopa/resources/payment.py on lines 113..114
    paypayopa/resources/pending.py on lines 25..26
    paypayopa/resources/preauth.py on lines 28..29

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

    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

    Identical blocks of code found in 8 locations. Consider refactoring.
    Open

            if type(data["amount"]["amount"]) != int:
                raise ValueError("\x1b[31m Amount should be of type integer"
    Severity: Major
    Found in paypayopa/resources/code.py and 7 other locations - About 35 mins to fix
    paypayopa/resources/payment.py on lines 22..23
    paypayopa/resources/payment.py on lines 57..58
    paypayopa/resources/payment.py on lines 90..91
    paypayopa/resources/payment.py on lines 113..114
    paypayopa/resources/pending.py on lines 25..26
    paypayopa/resources/pending.py on lines 60..61
    paypayopa/resources/preauth.py on lines 28..29

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

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

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

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

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

    Refactorings

    Further Reading

    Function give_cashback has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
    Open

        def give_cashback(self, data=None, **kwargs):
            if data is None:
                data = {}
            url = "{}".format(self.give_base_url)
            if "merchantCashbackId" not in data:
    Severity: Minor
    Found in paypayopa/resources/cashback.py - About 35 mins to fix

    Cognitive Complexity

    Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

    A method's cognitive complexity is based on a few simple rules:

    • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
    • Code is considered more complex for each "break in the linear flow of the code"
    • Code is considered more complex when "flow breaking structures are nested"

    Further reading

    Identical blocks of code found in 8 locations. Consider refactoring.
    Open

            if type(data["amount"]["amount"]) != int:
                raise ValueError("\x1b[31m Amount should be of type integer"
    Severity: Major
    Found in paypayopa/resources/payment.py and 7 other locations - About 35 mins to fix
    paypayopa/resources/code.py on lines 24..25
    paypayopa/resources/payment.py on lines 22..23
    paypayopa/resources/payment.py on lines 57..58
    paypayopa/resources/payment.py on lines 90..91
    paypayopa/resources/pending.py on lines 25..26
    paypayopa/resources/pending.py on lines 60..61
    paypayopa/resources/preauth.py on lines 28..29

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

    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

    Identical blocks of code found in 8 locations. Consider refactoring.
    Open

            if type(data["amount"]["amount"]) != int:
                raise ValueError("\x1b[31m Amount should be of type integer"
    Severity: Major
    Found in paypayopa/resources/preauth.py and 7 other locations - About 35 mins to fix
    paypayopa/resources/code.py on lines 24..25
    paypayopa/resources/payment.py on lines 22..23
    paypayopa/resources/payment.py on lines 57..58
    paypayopa/resources/payment.py on lines 90..91
    paypayopa/resources/payment.py on lines 113..114
    paypayopa/resources/pending.py on lines 25..26
    paypayopa/resources/pending.py on lines 60..61

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

    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

    Identical blocks of code found in 8 locations. Consider refactoring.
    Open

            if type(data["amount"]["amount"]) != int:
                raise ValueError("\x1b[31m Amount should be of type integer"
    Severity: Major
    Found in paypayopa/resources/payment.py and 7 other locations - About 35 mins to fix
    paypayopa/resources/code.py on lines 24..25
    paypayopa/resources/payment.py on lines 57..58
    paypayopa/resources/payment.py on lines 90..91
    paypayopa/resources/payment.py on lines 113..114
    paypayopa/resources/pending.py on lines 25..26
    paypayopa/resources/pending.py on lines 60..61
    paypayopa/resources/preauth.py on lines 28..29

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

    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

    Identical blocks of code found in 8 locations. Consider refactoring.
    Open

            if type(data["amount"]["amount"]) != int:
                raise ValueError("\x1b[31m Amount should be of type integer"
    Severity: Major
    Found in paypayopa/resources/payment.py and 7 other locations - About 35 mins to fix
    paypayopa/resources/code.py on lines 24..25
    paypayopa/resources/payment.py on lines 22..23
    paypayopa/resources/payment.py on lines 57..58
    paypayopa/resources/payment.py on lines 113..114
    paypayopa/resources/pending.py on lines 25..26
    paypayopa/resources/pending.py on lines 60..61
    paypayopa/resources/preauth.py on lines 28..29

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

    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 6 locations. Consider refactoring.
    Open

        def __init__(self, client=None):
            super(Code, self).__init__(client)
            Code.base_url = URL.CODE
    Severity: Major
    Found in paypayopa/resources/code.py and 5 other locations - About 30 mins to fix
    paypayopa/resources/account.py on lines 7..9
    paypayopa/resources/payment.py on lines 8..10
    paypayopa/resources/pending.py on lines 8..10
    paypayopa/resources/preauth.py on lines 8..10
    paypayopa/resources/user.py on lines 7..9

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

    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 6 locations. Consider refactoring.
    Open

        def __init__(self, client=None):
            super(Payment, self).__init__(client)
            self.base_url = URL.PAYMENT
    Severity: Major
    Found in paypayopa/resources/payment.py and 5 other locations - About 30 mins to fix
    paypayopa/resources/account.py on lines 7..9
    paypayopa/resources/code.py on lines 8..10
    paypayopa/resources/pending.py on lines 8..10
    paypayopa/resources/preauth.py on lines 8..10
    paypayopa/resources/user.py on lines 7..9

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

    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

    Severity
    Category
    Status
    Source
    Language