Skip to content

Commit 8b4ab93

Browse files
committed
tidy
1 parent d90575c commit 8b4ab93

2 files changed

Lines changed: 6 additions & 8 deletions

File tree

pyproject.toml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -43,12 +43,6 @@ dependencies = [
4343
"typing-extensions>=4.15.0, <5.0.0",
4444
"unstructured-client>=0.25.9, <1.0.0",
4545
"wrapt>=1.0.0, <2.0.0",
46-
<<<<<<< HEAD
47-
"filelock>=3.12.0,<4.0.0",
48-
||||||| parent of f7a4a80e (fix: update depdencies (#4247))
49-
"wrapt>=2.1.1, <3.0.0",
50-
=======
51-
>>>>>>> f7a4a80e (fix: update depdencies (#4247))
5246
]
5347

5448
[project.optional-dependencies]

scripts/performance/benchmark_partition.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,9 @@
4343

4444
NUM_ITERATIONS: int = int(os.environ.get("NUM_ITERATIONS", "1"))
4545

46-
DEFAULT_OUTPUT = Path(__file__).parent / "partition-speed-test" / "benchmark_results.json"
46+
DEFAULT_OUTPUT = (
47+
Path(__file__).parent / "partition-speed-test" / "benchmark_results.json"
48+
)
4749

4850

4951
def _warmup(filepath: str) -> None:
@@ -75,7 +77,9 @@ def _measure(filepath: str, strategy: str, iterations: int) -> float:
7577

7678
def main() -> None:
7779
output_path = Path(sys.argv[1]) if len(sys.argv) > 1 else DEFAULT_OUTPUT
78-
repo_root = Path(__file__).resolve().parent.parent.parent # scripts/performance/ -> repo root
80+
repo_root = (
81+
Path(__file__).resolve().parent.parent.parent
82+
) # scripts/performance/ -> repo root
7983

8084
logger.info("=" * 60)
8185
logger.info(f"Partition benchmark (NUM_ITERATIONS={NUM_ITERATIONS})")

0 commit comments

Comments
 (0)