diff --git a/tests/input/binary_slice.py b/tests/input/binary_slice.py index fb47b61..361d922 100644 --- a/tests/input/binary_slice.py +++ b/tests/input/binary_slice.py @@ -4,4 +4,4 @@ print(l[:2]) print(l[3:]) print(l[-4:]) print(l[:-2]) -print(l[:]) \ No newline at end of file +print(l[:]) diff --git a/tests/input/store_slice.py b/tests/input/store_slice.py index 1e04a3a..8d8369a 100644 --- a/tests/input/store_slice.py +++ b/tests/input/store_slice.py @@ -5,4 +5,4 @@ a[5] = 10 a[:2] = [1,2] a[:] = range(16) -print(a) \ No newline at end of file +print(a)