mirror of
https://github.com/netbox-community/netbox.git
synced 2026-03-29 22:02:11 +02:00
chore(ruff): Sort __all__ definitions across modules
Apply consistent alphabetical ordering to `__all__` lists in the circuits module. Enhances readability and alignment with established linting guidelines.
This commit is contained in:
@@ -14,11 +14,11 @@ from ..models import *
|
||||
|
||||
__all__ = (
|
||||
'ContactAssignmentImportForm',
|
||||
'ContactImportForm',
|
||||
'ContactGroupImportForm',
|
||||
'ContactImportForm',
|
||||
'ContactRoleImportForm',
|
||||
'TenantImportForm',
|
||||
'TenantGroupImportForm',
|
||||
'TenantImportForm',
|
||||
)
|
||||
|
||||
|
||||
|
||||
@@ -7,8 +7,8 @@ from ..models import *
|
||||
|
||||
__all__ = (
|
||||
'ContactModelFilterForm',
|
||||
'TenancyForm',
|
||||
'TenancyFilterForm',
|
||||
'TenancyForm',
|
||||
)
|
||||
|
||||
|
||||
|
||||
@@ -49,12 +49,12 @@ if TYPE_CHECKING:
|
||||
from .enums import *
|
||||
|
||||
__all__ = (
|
||||
'ContactAssignmentFilter',
|
||||
'ContactFilter',
|
||||
'ContactGroupFilter',
|
||||
'ContactRoleFilter',
|
||||
'TenantFilter',
|
||||
'TenantGroupFilter',
|
||||
'ContactFilter',
|
||||
'ContactRoleFilter',
|
||||
'ContactGroupFilter',
|
||||
'ContactAssignmentFilter',
|
||||
)
|
||||
|
||||
|
||||
|
||||
@@ -43,8 +43,8 @@ __all__ = (
|
||||
'ContactGroupType',
|
||||
'ContactRoleType',
|
||||
'ContactType',
|
||||
'TenantType',
|
||||
'TenantGroupType',
|
||||
'TenantType',
|
||||
)
|
||||
|
||||
|
||||
|
||||
@@ -9,8 +9,8 @@ from netbox.models.features import CustomFieldsMixin, ExportTemplatesMixin, Tags
|
||||
from tenancy.choices import *
|
||||
|
||||
__all__ = (
|
||||
'ContactAssignment',
|
||||
'Contact',
|
||||
'ContactAssignment',
|
||||
'ContactGroup',
|
||||
'ContactRole',
|
||||
)
|
||||
|
||||
@@ -7,9 +7,9 @@ from .template_code import *
|
||||
|
||||
__all__ = (
|
||||
'ContactsColumnMixin',
|
||||
'TenancyColumnsMixin',
|
||||
'TenantColumn',
|
||||
'TenantGroupColumn',
|
||||
'TenancyColumnsMixin',
|
||||
)
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user