()
| 83 | |
| 84 | |
| 85 | def test_trailing_semicolon_noop() -> None: |
| 86 | src = 'foo = "a";' |
| 87 | with pytest.raises(NothingChanged): |
| 88 | format_cell(src, fast=True, mode=JUPYTER_MODE) |
| 89 | |
| 90 | |
| 91 | @pytest.mark.parametrize( |
nothing calls this directly
no test coverage detected