Skip to content

Commit 70ead6b

Browse files
committed
Fix style issue
1 parent 66339d1 commit 70ead6b

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

pylsp/plugins/hover.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,8 @@ def pylsp_hover(config, document, position):
3232

3333
# Find first exact matching signature
3434
signature = next(
35-
(
36-
x.to_string() for x in definition.get_signatures()
37-
if (x.name == word and x.type not in ["module"])
38-
),
35+
(x.to_string() for x in definition.get_signatures()
36+
if (x.name == word and x.type not in ["module"])),
3937
''
4038
)
4139

0 commit comments

Comments
 (0)