[FIX]pylint fix

This commit is contained in:
NIKHIL RAVI
2023-08-21 17:25:49 +05:30
parent ad67878d2f
commit 6804dc4e99
7 changed files with 506 additions and 128 deletions

View File

@@ -1,6 +1,19 @@
"""
Module: apps.py
Description: Configuration for the 'asset' app.
"""
from django.apps import AppConfig
class AssetConfig(AppConfig):
default_auto_field = 'django.db.models.BigAutoField'
name = 'asset'
"""
Class: AssetConfig
Description: Configuration class for the 'asset' app.
Attributes:
default_auto_field (str): Default auto-generated field type for primary keys.
name (str): Name of the app.
"""
default_auto_field = "django.db.models.BigAutoField"
name = "asset"