mirror of
https://github.com/trezor/trezor-firmware.git
synced 2025-05-07 17:39:03 +00:00
16 lines
286 B
Python
16 lines
286 B
Python
from typing import *
|
|
|
|
|
|
# rust/src/micropython/coveragedata.rs
|
|
def add(file: str, line: int) -> None:
|
|
"""
|
|
Mark file line as covered.
|
|
"""
|
|
|
|
|
|
# rust/src/micropython/coveragedata.rs
|
|
def get() -> list[tuple[str, int]]:
|
|
"""
|
|
Return a list of all covered file lines.
|
|
"""
|