From e1c1347bdd336e9de953b19e90b3ceccfc55d613 Mon Sep 17 00:00:00 2001 From: Ben Jackson Date: Sat, 21 Nov 2020 16:52:38 +0000 Subject: [PATCH] Fix lint --- python3/vimspector/stack_trace.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python3/vimspector/stack_trace.py b/python3/vimspector/stack_trace.py index e394df9..dd2662c 100644 --- a/python3/vimspector/stack_trace.py +++ b/python3/vimspector/stack_trace.py @@ -200,7 +200,7 @@ class StackTraceView( object ): self._requesting_threads = StackTraceView.ThreadRequestState.NO self._pending_thread_request = None - existing_threads = self._threads[:] + existing_threads = self._threads[ : ] self._threads.clear() if stopEvent is not None: