From f56035182cac59afdf0e1d4515c2788dc5dea727 Mon Sep 17 00:00:00 2001 From: Hugo Date: Thu, 4 Jan 2018 16:39:42 +0200 Subject: [PATCH] Remove trailing semicolons --- test/completion/dynamic_arrays.py | 4 ++-- test/completion/ordering.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/test/completion/dynamic_arrays.py b/test/completion/dynamic_arrays.py index 5097c8b5..046b91ea 100644 --- a/test/completion/dynamic_arrays.py +++ b/test/completion/dynamic_arrays.py @@ -6,7 +6,7 @@ Checking for ``list.append`` and all the other possible array modifications. # ----------------- arr = [] for a in [1,2]: - arr.append(a); + arr.append(a) arr.append # should not cause an exception arr.append() # should not cause an exception @@ -16,7 +16,7 @@ arr[10] arr = [tuple()] for a in [1,2]: - arr.append(a); + arr.append(a) #? int() tuple() arr[10] diff --git a/test/completion/ordering.py b/test/completion/ordering.py index f3edebcc..e2d02d06 100644 --- a/test/completion/ordering.py +++ b/test/completion/ordering.py @@ -20,7 +20,7 @@ b temp a = 1 -temp = b; +temp = b b = a a = temp #? int()