10 lines
233 B
Python
10 lines
233 B
Python
from typing import List, Tuple
|
|
|
|
|
|
def match(
|
|
lines: List[str], levels: Tuple[str, str, str], needle: str,
|
|
output_positions: bool, limit: int, num_threads: int, mark_before: str,
|
|
mark_after: str, delimiter: str
|
|
):
|
|
pass
|