Uname: Linux server105.web-hosting.com 4.18.0-513.18.1.lve.el8.x86_64 #1 SMP Thu Feb 22 12:55:50 UTC 2024 x86_64
Software: LiteSpeed
PHP version: 7.4.33 [ PHP INFO ] PHP os: Linux
Server Ip: 68.65.120.251
Your Ip: 18.224.3.26
User: travtpib (6521) | Group: travtpib (6478)
Safe Mode: OFF
Disable Function:
NONE

name : func_noerror_urls.py
"""
Checks that Pylint does not complain about attributes and methods
when creating a typical urls.py
"""
#  pylint: disable=missing-docstring

try:
    # to be able to test django versions from 1.11 - 3.2
    from django.urls import path
except ImportError:
    from django.conf.urls import url as path
from django.views.generic import TemplateView


class BoringView(TemplateView):
    pass


urlpatterns = [
    path(r"^something", BoringView.as_view(), name="something"),
]
© 2025 GrazzMean-Shell