Skip to content

Commit fa937af

Browse files
author
Toni
committed
solving ruff issues
1 parent eae92ac commit fa937af

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

test/plugins/test_autopep8_format.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,14 +63,14 @@ def test_range_format(config, workspace) -> None:
6363

6464
def test_no_change(config, workspace) -> None:
6565
doc = Document(uri=DOC_URI, workspace=workspace, source=GOOD_DOC)
66-
66+
6767
assert not pylsp_format_document(config=config, workspace=workspace, document=doc, options=None)
6868

6969

7070
def test_hanging_indentation(config, workspace) -> None:
7171
doc = Document(uri=DOC_URI, workspace=workspace, source=INDENTED_DOC)
7272
res = pylsp_format_document(config=config, workspace=workspace, document=doc, options=None)
73-
73+
7474
assert len(res) == 1
7575
assert res[0]["newText"] == CORRECT_INDENTED_DOC
7676

test/plugins/test_symbols.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ def sym(name):
7676
def test_symbols_all_scopes(config, workspace) -> None:
7777
doc = Document(uri=DOC_URI, workspace=workspace, source=DOC)
7878
symbols = pylsp_document_symbols(config=config, document=doc)
79-
79+
8080
helper_check_symbols_all_scope(symbols)
8181

8282

0 commit comments

Comments
 (0)