MAKENTNU/web

View on GitHub

Showing 86 of 230 total issues

Function form_invalid has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
Open

def form_invalid(self, form):
if '__all__' in form.errors:
for error in form.errors['__all__'].data:
if error.code == 'warning_message':
messages.add_message(self.request, messages.WARNING, error.message)
Severity: Minor
Found in src/internal/views.py - About 25 mins to fix

Function inner_run has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
Open

def inner_run(self, *args, **options):
if not settings.DEBUG:
super().inner_run(*args, **options)
 
addr_regex = r"(?:127\.0\.0\.1|localhost)"
Severity: Minor
Found in src/web/management/commands/runserver.py - About 25 mins to fix

Function _do_request_assertion_for_path has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
Open

def _do_request_assertion_for_path(self, path: str, language_prefix: str, client: Client, is_superuser: bool, test_case: SimpleTestCase):
response = client.get(path)
 
if self.redirect:
test_case.assertIn(response.status_code, {HTTPStatus.MOVED_PERMANENTLY, HTTPStatus.FOUND},
Severity: Minor
Found in src/util/test_utils.py - About 25 mins to fix

Function block_join has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
Open

def block_join(object_collection: Sequence | QuerySet, sep="<b>&bull;</b>", multiline=True):
if len(object_collection) == 0:
return ""
 
tag = '<div style="display: inline-block; white-space: nowrap;">'
Severity: Minor
Found in src/util/html_utils.py - About 25 mins to fix

Function get_context_data has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
Open

def get_context_data(self, **kwargs):
user = self.request.user
profile, _created = Profile.objects.get_or_create(user=user)
 
completed_3d_printer = hasattr(user, 'printer_3d_course')
Severity: Minor
Found in src/checkin/views.py - About 25 mins to fix

Function post has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
Open

def post(self, request):
scan_exists = RegisterProfile.objects.exists()
response_dict = {
'scan_exists': scan_exists,
'scan_is_recent': False,
Severity: Minor
Found in src/checkin/api/views.py - About 25 mins to fix
Severity
Category
Status
Source
Language