mirror of
https://github.com/netbox-community/netbox.git
synced 2026-04-14 13:10:12 +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:
@@ -11,8 +11,8 @@ __all__ = (
|
||||
'BulkDeleteForm',
|
||||
'BulkEditForm',
|
||||
'BulkRenameForm',
|
||||
'ConfirmationForm',
|
||||
'CSVModelForm',
|
||||
'ConfirmationForm',
|
||||
'DeleteForm',
|
||||
'FilterForm',
|
||||
'TableConfigForm',
|
||||
|
||||
@@ -11,11 +11,11 @@ from utilities.forms.widgets import FilterModifierWidget
|
||||
from utilities.forms.widgets.modifiers import MODIFIER_EMPTY_FALSE, MODIFIER_EMPTY_TRUE
|
||||
|
||||
__all__ = (
|
||||
'FORM_FIELD_LOOKUPS',
|
||||
'BackgroundJobMixin',
|
||||
'CheckLastUpdatedMixin',
|
||||
'DistanceValidationMixin',
|
||||
'FilterModifierMixin',
|
||||
'FORM_FIELD_LOOKUPS',
|
||||
)
|
||||
|
||||
|
||||
|
||||
@@ -17,9 +17,9 @@ __all__ = (
|
||||
'get_field_value',
|
||||
'get_selected_values',
|
||||
'parse_alphanumeric_range',
|
||||
'parse_csv',
|
||||
'parse_numeric_range',
|
||||
'restrict_form_fields',
|
||||
'parse_csv',
|
||||
'validate_csv',
|
||||
)
|
||||
|
||||
|
||||
@@ -5,9 +5,9 @@ from django.utils.translation import gettext_lazy as _
|
||||
from utilities.forms.widgets.apiselect import APISelect, APISelectMultiple
|
||||
|
||||
__all__ = (
|
||||
'FilterModifierWidget',
|
||||
'MODIFIER_EMPTY_FALSE',
|
||||
'MODIFIER_EMPTY_TRUE',
|
||||
'FilterModifierWidget',
|
||||
)
|
||||
|
||||
# Modifier codes for empty/null checking
|
||||
|
||||
@@ -5,8 +5,8 @@ from django.urls import reverse
|
||||
|
||||
__all__ = (
|
||||
'htmx_current_url',
|
||||
'htmx_partial',
|
||||
'htmx_maybe_redirect_current_page',
|
||||
'htmx_partial',
|
||||
)
|
||||
|
||||
|
||||
|
||||
@@ -13,8 +13,8 @@ __all__ = (
|
||||
'checkmark',
|
||||
'copy_content',
|
||||
'customfield_value',
|
||||
'htmx_table',
|
||||
'formaction',
|
||||
'htmx_table',
|
||||
'static_with_params',
|
||||
'tag',
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user