Skip to content

Commit 2407f30

Browse files
andravinclaude
andcommitted
style: fix ruff formatting in vscode_pytest/__init__.py
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 97ffb96 commit 2407f30

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

python_files/vscode_pytest/__init__.py

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -819,10 +819,13 @@ def create_test_node(
819819
absolute_test_id = get_absolute_test_id(test_case.nodeid, get_node_path(test_case))
820820

821821
# Extract pytest marks as tags (deduplicated, preserving order)
822-
tags: list[str] = list(dict.fromkeys(
823-
marker.name for marker in (getattr(test_case, "own_markers", None) or [])
824-
if marker.name and marker.name != "parametrize"
825-
))
822+
tags: list[str] = list(
823+
dict.fromkeys(
824+
marker.name
825+
for marker in (getattr(test_case, "own_markers", None) or [])
826+
if marker.name and marker.name != "parametrize"
827+
)
828+
)
826829

827830
return {
828831
"name": test_case.name,

0 commit comments

Comments
 (0)