mirror of
https://github.com/netbox-community/netbox.git
synced 2026-03-26 03:11:49 +01: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:
@@ -12,8 +12,8 @@ from wireless.choices import *
|
||||
from wireless.models import *
|
||||
|
||||
__all__ = (
|
||||
'WirelessLANImportForm',
|
||||
'WirelessLANGroupImportForm',
|
||||
'WirelessLANImportForm',
|
||||
'WirelessLinkImportForm',
|
||||
)
|
||||
|
||||
|
||||
@@ -20,8 +20,8 @@ if TYPE_CHECKING:
|
||||
from .enums import *
|
||||
|
||||
__all__ = (
|
||||
'WirelessLANGroupFilter',
|
||||
'WirelessLANFilter',
|
||||
'WirelessLANGroupFilter',
|
||||
'WirelessLinkFilter',
|
||||
)
|
||||
|
||||
|
||||
@@ -14,8 +14,8 @@ if TYPE_CHECKING:
|
||||
from tenancy.graphql.types import TenantType
|
||||
|
||||
__all__ = (
|
||||
'WirelessLANType',
|
||||
'WirelessLANGroupType',
|
||||
'WirelessLANType',
|
||||
'WirelessLinkType',
|
||||
)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user