diff --git a/test/fixtures/python/assignment.A.py b/test/fixtures/python/assignment.A.py index e02528d46..36cac3d91 100644 --- a/test/fixtures/python/assignment.A.py +++ b/test/fixtures/python/assignment.A.py @@ -1,4 +1,3 @@ a = 1 a, b = 1, 2 a, = 1, 2 - diff --git a/test/fixtures/python/attribute.A.py b/test/fixtures/python/attribute.A.py index 085624ffe..4e1c325aa 100644 --- a/test/fixtures/python/attribute.A.py +++ b/test/fixtures/python/attribute.A.py @@ -1,2 +1 @@ a.b - diff --git a/test/fixtures/python/augmented-assignment.A.py b/test/fixtures/python/augmented-assignment.A.py index 723d2dcad..c57266805 100644 --- a/test/fixtures/python/augmented-assignment.A.py +++ b/test/fixtures/python/augmented-assignment.A.py @@ -1,4 +1,3 @@ a += 1 b >>= 2 c //= 1 - diff --git a/test/fixtures/python/call.A.py b/test/fixtures/python/call.A.py index 26d67853a..dbed68f35 100644 --- a/test/fixtures/python/call.A.py +++ b/test/fixtures/python/call.A.py @@ -1,3 +1,3 @@ foo(a) bar() -bazz(c,d) \ No newline at end of file +bazz(c,d) diff --git a/test/fixtures/python/dictionary.A.py b/test/fixtures/python/dictionary.A.py index 0983f747c..a4a0c3b21 100644 --- a/test/fixtures/python/dictionary.A.py +++ b/test/fixtures/python/dictionary.A.py @@ -1,3 +1,3 @@ {} {a: 1} -{foo: b, bar: c} \ No newline at end of file +{foo: b, bar: c} diff --git a/test/fixtures/python/identifier.A.py b/test/fixtures/python/identifier.A.py index 2e65efe2a..789819226 100644 --- a/test/fixtures/python/identifier.A.py +++ b/test/fixtures/python/identifier.A.py @@ -1 +1 @@ -a \ No newline at end of file +a diff --git a/test/fixtures/python/identifier.B.py b/test/fixtures/python/identifier.B.py index 7ec9a4b77..e61ef7b96 100644 --- a/test/fixtures/python/identifier.B.py +++ b/test/fixtures/python/identifier.B.py @@ -1 +1 @@ -aa \ No newline at end of file +aa diff --git a/test/fixtures/python/list.A.py b/test/fixtures/python/list.A.py index 0718872e7..b5b8e4884 100644 --- a/test/fixtures/python/list.A.py +++ b/test/fixtures/python/list.A.py @@ -1,3 +1,3 @@ [] [1,2,3] -[a,b,c,] \ No newline at end of file +[a,b,c,] diff --git a/test/fixtures/python/subscript.A.py b/test/fixtures/python/subscript.A.py index 6bc6a5b50..d089a0369 100644 --- a/test/fixtures/python/subscript.A.py +++ b/test/fixtures/python/subscript.A.py @@ -1 +1 @@ -a[b] \ No newline at end of file +a[b] diff --git a/test/fixtures/python/subscript.B.py b/test/fixtures/python/subscript.B.py index 905a0ae46..4374725e0 100644 --- a/test/fixtures/python/subscript.B.py +++ b/test/fixtures/python/subscript.B.py @@ -1 +1 @@ -b[a] \ No newline at end of file +b[a] diff --git a/test/fixtures/python/unary-operator.A.py b/test/fixtures/python/unary-operator.A.py index b2725290f..ce7272b17 100644 --- a/test/fixtures/python/unary-operator.A.py +++ b/test/fixtures/python/unary-operator.A.py @@ -1,3 +1,3 @@ -a +b -~c \ No newline at end of file +~c diff --git a/test/fixtures/python/unary-operator.B.py b/test/fixtures/python/unary-operator.B.py index 7e5152724..a7fc16a8c 100644 --- a/test/fixtures/python/unary-operator.B.py +++ b/test/fixtures/python/unary-operator.B.py @@ -1,3 +1,3 @@ ~a -b -+c \ No newline at end of file ++c