Returns true if the first word in status is 'select'.
(status)
| 1783 | |
| 1784 | |
| 1785 | def is_select(status): |
| 1786 | """Returns true if the first word in status is 'select'.""" |
| 1787 | if not status: |
| 1788 | return False |
| 1789 | return status.split(None, 1)[0].lower() == "select" |
| 1790 | |
| 1791 | |
| 1792 | def diagnostic_output(diagnostic: Diagnostic) -> str: |
no outgoing calls
no test coverage detected