From 7f1cdb3e37cbddded70fc3d7ee9902bcf54c4978 Mon Sep 17 00:00:00 2001 From: Tom Tromey Date: Tue, 7 Oct 2025 13:08:19 -0600 Subject: [PATCH] Remove 'sys' import from frame_filters.py pre-commit (really flake8) points out that a recent change to frame_filters.py left an unused import. This patch fixes the problem. --- gdb/python/lib/gdb/command/frame_filters.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/gdb/python/lib/gdb/command/frame_filters.py b/gdb/python/lib/gdb/command/frame_filters.py index 4b2d214d697..3b7cd031df3 100644 --- a/gdb/python/lib/gdb/command/frame_filters.py +++ b/gdb/python/lib/gdb/command/frame_filters.py @@ -16,8 +16,6 @@ """GDB commands for working with frame-filters.""" -import sys - import gdb import gdb.frames -- 2.47.3