Skip to content

Commit

Permalink
Fix format with 'black'
Browse files Browse the repository at this point in the history
Signed-off-by: Danila Fedorin <[email protected]>
  • Loading branch information
DanilaFe committed Oct 12, 2024
1 parent 4b6d07f commit f3bf535
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tools/chpl-language-server/test/call_hierarchy.py
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,9 @@ async def test_call_hierarchy_across_files(client: LanguageClient):

async def check(docs):
await check_call_hierarchy(client, docs("C"), pos((3, 2)), expected_int)
await check_call_hierarchy(client, docs("C"), pos((4, 2)), expected_real)
await check_call_hierarchy(
client, docs("C"), pos((4, 2)), expected_real
)

# Ensure that call hierarchy works without .cls-commands.json...
async with unrelated_source_files(
Expand All @@ -209,7 +211,5 @@ async def check(docs):
await check(docs)

# ...and with .cls-commands.json
async with source_files(
client, A=fileA, B=fileB, C=fileC
) as docs:
async with source_files(client, A=fileA, B=fileB, C=fileC) as docs:
await check(docs)

0 comments on commit f3bf535

Please sign in to comment.