Skip to content

Commit 9ec9de5

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 3f0570d commit 9ec9de5

File tree

13 files changed

+18
-18
lines changed

13 files changed

+18
-18
lines changed

python/executor/isolated_executor.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020
from typing import Any, Dict, List, Optional, Callable
2121
import contextlib
2222

23-
2423
# IPC Constants
2524
MAGIC = 0x4C495448 # "LITH"
2625
VERSION = 1

python/lithium_bridge/registry_api.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
from .exporter import expose_controller, expose_command
1212
from .module_info import ModuleRegistry, ModuleCategory, PlatformSupport
1313

14-
1514
# Global registry instance
1615
_registry: Optional[ModuleRegistry] = None
1716

python/tools/compiler_helper/api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
"""
44
High-level API for the compiler helper module.
55
"""
6+
67
from pathlib import Path
78
from typing import List, Optional, Union
89

@@ -17,7 +18,6 @@
1718
from .compiler import Compiler
1819
from .build_manager import BuildManager
1920

20-
2121
# Create a singleton compiler manager for global use
2222
compiler_manager = CompilerManager()
2323

python/tools/compiler_helper/build_manager.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
"""
44
Build Manager for handling compilation and linking of C++ projects.
55
"""
6+
67
import os
78
import time
89
import re

python/tools/compiler_helper/cli.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
"""
44
Command-line interface for the compiler helper module.
55
"""
6+
67
import sys
78
import argparse
89
from pathlib import Path

python/tools/compiler_helper/compiler.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
"""
44
Compiler class implementation for the compiler helper module.
55
"""
6+
67
from dataclasses import dataclass, field
78
import os
89
import platform

python/tools/compiler_helper/compiler_manager.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
"""
44
Compiler Manager for detecting and managing compilers.
55
"""
6+
67
import os
78
import platform
89
import re

python/tools/compiler_helper/core_types.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
"""
44
Core types and exceptions for the compiler helper module.
55
"""
6+
67
from enum import Enum, auto
78
from typing import List, Dict, Optional, Union, Set, Any, TypedDict, Literal
89
from dataclasses import dataclass, field

python/tools/compiler_helper/utils.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
"""
44
Utility functions for the compiler helper module.
55
"""
6+
67
import json
78
from pathlib import Path
89
from typing import Dict, Any

python/tools/compiler_parser.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@
2929
import sys
3030
from functools import partial
3131

32-
3332
# Configure logging
3433
logging.basicConfig(
3534
level=logging.INFO, format="%(asctime)s - %(name)s - %(levelname)s - %(message)s"

0 commit comments

Comments
 (0)