11 lines
289 B
Python
11 lines
289 B
Python
"""Configuration for VideoReceiverSFP local behavior."""
|
|
from __future__ import annotations
|
|
|
|
import os
|
|
|
|
# Directory to store dumps (relative to repo root by default)
|
|
DUMPS_DIR = os.path.join(os.getcwd(), "dumps")
|
|
|
|
# Number of latest files to keep per type (png, bin)
|
|
DUMP_KEEP_COUNT = 100
|