Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@
from multiprocessing.managers import BaseManager

from matter.testing.commissioning import CommissionDeviceTest
from matter.testing.matter_testing import (
MatterTestConfig,
from matter.testing.matter_testing import MatterTestConfig
from matter.testing.runner import (
TestStep,
get_test_info,
parse_matter_test_args,
Comment on lines 29 to 31

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

For better readability and consistency, it's a good practice to sort the imported members alphabetically. This aligns with common Python style conventions, such as those enforced by tools like isort.

Suggested change
TestStep,
get_test_info,
parse_matter_test_args,
get_test_info,
parse_matter_test_args,
TestStep,

Expand Down
Loading