chore: sort imports (#413)

This commit is contained in:
J. Nick Koston
2025-03-06 12:27:01 -10:00
committed by GitHub
parent 755626e758
commit a589651511
14 changed files with 26 additions and 16 deletions

View File

@@ -1,6 +1,7 @@
from dbus_fast import Message
from pytest_codspeed import BenchmarkFixture
from dbus_fast import Message
message = Message(
destination="org.bluez",
path="/",

View File

@@ -1,9 +1,9 @@
import io
from dbus_fast._private.unmarshaller import Unmarshaller
from pytest_codspeed import BenchmarkFixture
from dbus_fast._private.unmarshaller import Unmarshaller
def test_unmarshall_bluez_rssi_message(benchmark: BenchmarkFixture) -> None:
bluez_rssi_message = (

View File

@@ -2,9 +2,9 @@ import os
from dbus_fast import (
ArgDirection,
InvalidMemberNameError,
PropertyAccess,
SignatureType,
InvalidMemberNameError,
)
from dbus_fast import introspection as intr

View File

@@ -8,15 +8,14 @@ import pytest
from dbus_fast import Message, MessageFlag, MessageType, SignatureTree, Variant
from dbus_fast._private._cython_compat import FakeCython
from dbus_fast._private.constants import BIG_ENDIAN, LITTLE_ENDIAN
from dbus_fast._private.unmarshaller import (
Unmarshaller,
is_compiled,
buffer_to_int16,
buffer_to_uint32,
buffer_to_uint16,
buffer_to_uint32,
is_compiled,
)
from dbus_fast._private.constants import BIG_ENDIAN, LITTLE_ENDIAN
from dbus_fast.unpack import unpack_variants

View File

@@ -1,8 +1,9 @@
import asyncio
import os
from contextlib import suppress
import pytest
from contextlib import suppress
from dbus_fast import Message
from dbus_fast._private.address import parse_address
from dbus_fast.aio import MessageBus