(block, start_block=False)
| 562 | |
| 563 | @staticmethod |
| 564 | def _cut_block(block, start_block=False): |
| 565 | answer = block[2:-1] |
| 566 | if answer[0].split() == "": |
| 567 | answer = answer[1:] |
| 568 | if answer[-1].split() == "": |
| 569 | answer = answer[:1] |
| 570 | return answer |
| 571 | |
| 572 | |
| 573 | class LearnJuliaAdapter(LearnXYAdapter): |
nothing calls this directly
no outgoing calls
no test coverage detected