(text: str)
| 1337 | |
| 1338 | |
| 1339 | def has_number_token(text: str) -> bool: |
| 1340 | return bool(re.search(r"\d+(?:\.\d+)?\s*(?:%|%|[A-Za-z\u4e00-\u9fff]{0,8})", text)) |
| 1341 | |
| 1342 | |
| 1343 | def is_honest_missing_declaration(text: str) -> bool: |
no outgoing calls
no test coverage detected