(self, collect: str | None)
| 186 | suffix += 1 |
| 187 | |
| 188 | def _normalize_collect(self, collect: str | None) -> str: |
| 189 | normalized = (collect or "").strip() |
| 190 | if not normalized: |
| 191 | return "" |
| 192 | try: |
| 193 | return unquote(normalized) |
| 194 | except Exception: |
| 195 | return normalized |
| 196 | |
| 197 | def _js_round(self, value: float) -> int: |
| 198 | if value >= 0: |
no outgoing calls
no test coverage detected