From aa292c76820fac67a064f20cafb9946cd746d1e1 Mon Sep 17 00:00:00 2001 From: Sahil Jain Date: Tue, 1 Jul 2025 09:27:07 +0530 Subject: [PATCH] Add newlines --- tests/input/binary_slice.py | 2 +- tests/input/store_slice.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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)