Skip to content

Commit a65ef88

Browse files
committed
style: apply pre-commit formatting fixes
Made-with: Cursor
1 parent 7e0b441 commit a65ef88

1 file changed

Lines changed: 6 additions & 2 deletions

File tree

cuda_pathfinder/cuda/pathfinder/_headers/supported_nvidia_headers.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,14 @@
1919
_NON_CTK_DESCRIPTORS = tuple(desc for desc in HEADER_DESCRIPTOR_CATALOG if desc.packaged_with == "other")
2020

2121
SUPPORTED_HEADERS_CTK_COMMON: Final[dict[str, str]] = {
22-
desc.name: desc.header_basename for desc in _CTK_DESCRIPTORS if desc.available_on_linux and desc.available_on_windows
22+
desc.name: desc.header_basename
23+
for desc in _CTK_DESCRIPTORS
24+
if desc.available_on_linux and desc.available_on_windows
2325
}
2426
SUPPORTED_HEADERS_CTK_LINUX_ONLY: Final[dict[str, str]] = {
25-
desc.name: desc.header_basename for desc in _CTK_DESCRIPTORS if desc.available_on_linux and not desc.available_on_windows
27+
desc.name: desc.header_basename
28+
for desc in _CTK_DESCRIPTORS
29+
if desc.available_on_linux and not desc.available_on_windows
2630
}
2731
SUPPORTED_HEADERS_CTK_WINDOWS_ONLY: Final[dict[str, str]] = {
2832
desc.name: desc.header_basename

0 commit comments

Comments
 (0)