Skip to content

Commit 404963b

Browse files
[pre-commit.ci] auto code formatting
1 parent 6b1fc9f commit 404963b

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

cuda_pathfinder/cuda/pathfinder/_static_libs/find_bitcode_lib.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,9 +58,7 @@ def _no_such_file_in_dir(dir_path: str, filename: str, error_messages: list[str]
5858
class _FindBitcodeLib:
5959
def __init__(self, name: str) -> None:
6060
if name not in _SUPPORTED_BITCODE_LIBS_INFO: # Updated reference
61-
raise ValueError(
62-
f"Unknown bitcode library: '{name}'. Supported: {', '.join(SUPPORTED_BITCODE_LIBS)}"
63-
)
61+
raise ValueError(f"Unknown bitcode library: '{name}'. Supported: {', '.join(SUPPORTED_BITCODE_LIBS)}")
6462
self.name: str = name
6563
self.config: _BitcodeLibInfo = _SUPPORTED_BITCODE_LIBS_INFO[name] # Updated reference
6664
self.filename: str = self.config["filename"]

0 commit comments

Comments
 (0)