Showing 2,406 of 2,406 total issues
Function verify_challenge_transaction_signers
has 6 arguments (exceeds 5 allowed). Consider refactoring. Open
def verify_challenge_transaction_signers(
Function __init__
has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring. Open
def __init__(
self,
time_bounds: TimeBounds = None,
ledger_bounds: LedgerBounds = None,
min_sequence_number: int = None,
- Read upRead up
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 to_xdr_object
has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring. Open
def to_xdr_object(self) -> stellar_xdr.ClaimPredicate:
if (
self.claim_predicate_type
== ClaimPredicateType.CLAIM_PREDICATE_UNCONDITIONAL
):
- Read upRead up
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 to_xdr_object
has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring. Open
def to_xdr_object(
self,
) -> Union[stellar_xdr.Transaction, stellar_xdr.TransactionV0]:
"""Get an XDR object representation of this :class:`Transaction`.
- Read upRead up
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 __init__
has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring. Open
def __init__(
self,
source: Union[MuxedAccount, Keypair, str],
sequence: int,
fee: int,
- Read upRead up
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_memo
has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring. Open
def _encode_memo(memo) -> Union[Tuple[str, Union[str, int]], Tuple[None, None]]:
if memo and not isinstance(memo, NoneMemo):
if isinstance(memo, TextMemo):
memo_text = memo.memo_text.decode() # memo text cant decode?
memo_type = "MEMO_TEXT"
- Read upRead up
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 from_xdr_object
has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring. Open
def from_xdr_object(
cls, xdr_object: stellar_xdr.ClaimPredicate
) -> "ClaimPredicate":
claim_predicate_type = xdr_object.type
if (
- Read upRead up
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 _decode_memo
has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring. Open
def _decode_memo(
memo_type: Optional[str], memo_value: Optional[str]
) -> Optional[Memo]:
if memo_type is None:
return None
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Avoid too many return
statements within this function. Open
return ReturnHashMemo(value)
Avoid too many return
statements within this function. Open
return False
Avoid too many return
statements within this function. Open
return asset_a.code < asset_b.code
Avoid too many return
statements within this function. Open
return stellar_xdr.ClaimPredicate(
Avoid too many return
statements within this function. Open
return asset_a.issuer < asset_b.issuer
Avoid too many return
statements within this function. Open
return cls.predicate_or(left, right)
Avoid too many return
statements within this function. Open
return cls.predicate_and(left, right)
Avoid too many return
statements within this function. Open
return None, None
Avoid too many return
statements within this function. Open
return stellar_xdr.ClaimPredicate(
Function _get_check_memo_required_destinations
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
def _get_check_memo_required_destinations(
self, transaction: Transaction
) -> Generator[Tuple[int, str], Any, Any]:
destinations = set()
for index, operation in enumerate(transaction.operations):
- Read upRead up
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 authorize_entry
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
def authorize_entry(
entry: Union[stellar_xdr.SorobanAuthorizationEntry, str],
signer: Union[Keypair, Callable[[stellar_xdr.HashIDPreimage], bytes]],
valid_until_ledger_sequence: int,
network_passphrase: str,
- Read upRead up
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 ed25519_signed_payload
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
def ed25519_signed_payload(
cls, ed25519_signed_payload: Union[str, bytes, SignedPayloadSigner]
) -> "SignerKey":
"""Create ed25519 signed payload Signer from an ed25519 signed payload,
click `here <https://github.com/stellar/stellar-protocol/blob/master/core/cap-0040.md>`__ for more information.
- Read upRead up
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"