Showing 35 of 138 total issues
Similar blocks of code found in 2 locations. Consider refactoring. Open
- Read upRead up
Similar blocks of code found in 2 locations. Consider refactoring. Open
- Read upRead up
Similar blocks of code found in 2 locations. Consider refactoring. Open
- Read upRead up
Similar blocks of code found in 2 locations. Consider refactoring. Open
- Read upRead up
Function update_trust_marks
has a Cognitive Complexity of 22 (exceeds 5 allowed). Consider refactoring. Open
def update_trust_marks(modeladmin, request, queryset): # pragma: no cover """ fetch trust marks from all the authorities """ trust_marks = {}
- Read upRead up
Similar blocks of code found in 3 locations. Consider refactoring. Open
migrations.AlterField( model_name="federationdescendant", name="type", field=models.CharField( blank=True,
- Read upRead up
Similar blocks of code found in 3 locations. Consider refactoring. Open
migrations.AlterField( model_name="federationentityconfiguration", name="entity_type", field=models.CharField( blank=True,
- Read upRead up
Similar blocks of code found in 3 locations. Consider refactoring. Open
operations = [ migrations.AlterField( model_name="onboardingregistration", name="type", field=models.CharField(
- Read upRead up
Identical blocks of code found in 2 locations. Consider refactoring. Open
"revocation_motivation", models.CharField( blank=True, choices=[ (0, "unspecified"),
- Read upRead up
Identical blocks of code found in 2 locations. Consider refactoring. Open
"revocation_motivation", models.CharField( blank=True, choices=[ (0, "unspecified"),
- Read upRead up
Similar blocks of code found in 2 locations. Consider refactoring. Open
- Read upRead up
Similar blocks of code found in 2 locations. Consider refactoring. Open
- Read upRead up
Similar blocks of code found in 4 locations. Consider refactoring. Open
- Read upRead up
Similar blocks of code found in 4 locations. Consider refactoring. Open
- Read upRead up
Similar blocks of code found in 2 locations. Consider refactoring. Open
- Read upRead up
Similar blocks of code found in 2 locations. Consider refactoring. Open
- Read upRead up
Similar blocks of code found in 2 locations. Consider refactoring. Open
- Read upRead up
Similar blocks of code found in 2 locations. Consider refactoring. Open
- Read upRead up
Function validate_claims
has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring. Open
def validate_claims(cls, claims): for k_claim, v_claim in claims.items(): cl = cls.get_claims() claims_items = cl.get(k_claim, None) if not claims_items:
- Read upRead up
Function resolve_entity_statement
has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring. Open
def resolve_entity_statement(request, format: str = "jose"): """ resolves the final metadata of its descendants In this implementation we only returns a preexisting
- Read upRead up