diff options
author | Tom Tromey <tromey@adacore.com> | 2024-12-16 10:45:28 -0700 |
---|---|---|
committer | Tom Tromey <tromey@adacore.com> | 2024-12-16 10:46:40 -0700 |
commit | 72491a6a7e2cb586db566d37a278df2d88500060 (patch) | |
tree | 82e604118f919117d824e18e8ce71bb486676e70 | |
parent | f1b4718cbdfc3332b737fbea8612448586f5184b (diff) | |
download | gdb-72491a6a7e2cb586db566d37a278df2d88500060.zip gdb-72491a6a7e2cb586db566d37a278df2d88500060.tar.gz gdb-72491a6a7e2cb586db566d37a278df2d88500060.tar.bz2 |
Re-run isort
I noticed that an earlier commit caused a change in the isort output.
This patch repairs the problem.
-rw-r--r-- | gdb/python/lib/gdb/dap/frames.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/python/lib/gdb/dap/frames.py b/gdb/python/lib/gdb/dap/frames.py index 5ef6cda..f4e6565 100644 --- a/gdb/python/lib/gdb/dap/frames.py +++ b/gdb/python/lib/gdb/dap/frames.py @@ -14,13 +14,13 @@ # along with this program. If not, see <http://www.gnu.org/licenses/>. import itertools +from typing import Dict import gdb from gdb.frames import frame_iterator from .startup import in_gdb_thread from .state import set_thread -from typing import Dict # A list of all the frames we've reported. A frame's index in the # list is its ID. We don't use a hash here because frames are not |