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:
Martin Hauser
2026-02-20 15:36:01 +01:00
parent 85d6242962
commit 3beef34355
88 changed files with 134 additions and 134 deletions

View File

@@ -12,8 +12,8 @@ from wireless.choices import *
from wireless.models import *
__all__ = (
'WirelessLANImportForm',
'WirelessLANGroupImportForm',
'WirelessLANImportForm',
'WirelessLinkImportForm',
)

View File

@@ -20,8 +20,8 @@ if TYPE_CHECKING:
from .enums import *
__all__ = (
'WirelessLANGroupFilter',
'WirelessLANFilter',
'WirelessLANGroupFilter',
'WirelessLinkFilter',
)

View File

@@ -14,8 +14,8 @@ if TYPE_CHECKING:
from tenancy.graphql.types import TenantType
__all__ = (
'WirelessLANType',
'WirelessLANGroupType',
'WirelessLANType',
'WirelessLinkType',
)