(s)
| 219 | return True |
| 220 | |
| 221 | def strip_quotes(s): |
| 222 | if s.startswith("'''") and s.endswith("'''"): |
| 223 | s = s[3:-3] |
| 224 | elif s.startswith('"""') and s.endswith('"""'): |
| 225 | s = s[3:-3] |
| 226 | elif s.startswith("'") and s.endswith("'"): |
| 227 | s = s[1:-1] |
| 228 | elif s.startswith('"') and s.endswith('"'): |
| 229 | s = s[1:-1] |
| 230 | pass |
| 231 | return s |
| 232 | |
| 233 | |
| 234 |
no outgoing calls
no test coverage detected