mirror of
https://github.com/overcuriousity/autopsy-flatpak.git
synced 2025-07-06 21:00:22 +00:00
17 lines
315 B
Python
17 lines
315 B
Python
from typing import TypeVar, Callable, Tuple
|
|
|
|
|
|
def is_match(content: str, regex: str) -> bool:
|
|
pass
|
|
|
|
T = TypeVar('T')
|
|
|
|
def is_match_on_field(obj: T, prop_retriever: Callable[T, str]) -> bool:
|
|
pass
|
|
|
|
class SeparationResult:
|
|
|
|
def __init__(self, ):
|
|
|
|
def separate(obj: T, prop_retriever: Callable[T, str]) ->
|