(value: Any)
| 1128 | |
| 1129 | |
| 1130 | def _configured_daily_limit(value: Any = None) -> int: |
| 1131 | if value in (None, ""): |
| 1132 | return _to_positive_int(_env_text("PAPERFLOW_DAILY_LIMIT", "30"), 30) |
| 1133 | return _to_positive_int(value, 30) |
| 1134 |
no test coverage detected