Skip to content

Commit 774b340

Browse files
committed
pre-commit
1 parent b902d62 commit 774b340

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

codeflash/tracer.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,6 @@
1414
import json
1515
import pickle
1616
import subprocess
17-
import time
18-
1917
import sys
2018
from argparse import ArgumentParser
2119
from pathlib import Path

codeflash/tracing/pytest_parallelization.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
from pathlib import Path
66
from random import shuffle
77

8+
89
def pytest_split(
910
arguments: list[str], num_splits: int | None = None
1011
) -> tuple[list[list[str]] | None, list[str] | None]:
@@ -53,7 +54,7 @@ def pytest_split(
5354
if num_splits is None:
5455
num_splits = os.cpu_count() or 4
5556

56-
#randomize to increase chances of all splits being balanced
57+
# randomize to increase chances of all splits being balanced
5758
test_files = list(test_files)
5859
shuffle(test_files)
5960

0 commit comments

Comments
 (0)