Skip to content

Commit 85fe6e3

Browse files
committed
rm type subscripts
1 parent 7089cfd commit 85fe6e3

File tree

1 file changed

+3
-3
lines changed
  • cross-project-tests/debuginfo-tests/dexter/dex/debugger

1 file changed

+3
-3
lines changed

cross-project-tests/debuginfo-tests/dexter/dex/debugger/DAP.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@ def make_set_breakpoint_request(source: str, bps) -> dict:
262262
)
263263

264264
@staticmethod
265-
def make_set_function_breakpoint_request(function_names: list[str]) -> dict:
265+
def make_set_function_breakpoint_request(function_names: list) -> dict:
266266
# Function breakpoints may specify conditions and hit counts, though we
267267
# don't use those here (though perhaps we should use native hit count,
268268
# rather than emulating it ConditionalController, now that we have a
@@ -273,7 +273,7 @@ def make_set_function_breakpoint_request(function_names: list[str]) -> dict:
273273
)
274274

275275
@staticmethod
276-
def make_set_instruction_breakpoint_request(addrs: list[str]) -> dict:
276+
def make_set_instruction_breakpoint_request(addrs: list) -> dict:
277277
# Instruction breakpoints have additional fields we're ignoring for the
278278
# moment.
279279
return DAP.make_request(
@@ -574,7 +574,7 @@ def _add_conditional_breakpoint(self, file, line, condition):
574574
return new_id
575575

576576
def _update_breakpoint_ids_after_request(
577-
self, dex_bp_ids: list[int], response: dict
577+
self, dex_bp_ids: list, response: dict
578578
):
579579
dap_bp_ids = [bp["id"] for bp in response["body"]["breakpoints"]]
580580
if len(dex_bp_ids) != len(dap_bp_ids):

0 commit comments

Comments
 (0)