mirror of
https://github.com/davidhalter/jedi.git
synced 2025-12-10 15:51:51 +08:00
Remove redundant parentheses
This commit is contained in:
@@ -14,7 +14,7 @@ Recursion().a
|
||||
Recursion().b
|
||||
|
||||
|
||||
class X():
|
||||
class X:
|
||||
def __init__(self):
|
||||
self.recursive = [1, 3]
|
||||
|
||||
@@ -39,7 +39,7 @@ def recursion1(foo):
|
||||
recursion1([1,2])[0]
|
||||
|
||||
|
||||
class FooListComp():
|
||||
class FooListComp:
|
||||
def __init__(self):
|
||||
self.recursive = [1]
|
||||
|
||||
|
||||
Reference in New Issue
Block a user