diff --git a/pwndbg/commands/heap.py b/pwndbg/commands/heap.py
index c948be616..b4651f6d8 100644
--- a/pwndbg/commands/heap.py
+++ b/pwndbg/commands/heap.py
@@ -95,53 +95,6 @@ def format_bin(bins, verbose=False, offset=None):
return result
-parser = argparse.ArgumentParser()
-parser.description = "Template heap command. You can ignore this."
-parser.add_argument("addr", type=int, help="Address of a chunk header.")
-
-
-@pwndbg.commands.ArgparsedCommand(parser)
-@pwndbg.commands.OnlyWhenRunning
-@pwndbg.commands.OnlyWithResolvedHeapSyms
-@pwndbg.commands.OnlyWhenHeapIsInitialized
-def template_heap_command(addr):
- """Template heap command with example uses of pwndbg's heap classes."""
-
- # `addr` is a gdb.Value of one of several types, depending on how the user invoked this command
- # e.g. template_heap_command
vs. template_heap_command
-
- # The `Chunk` class abstracts away many heap & gdb module internals.
- chunk = pwndbg.heap.ptmalloc.Chunk(addr)
-
- print(f"chunk.address: 0x{chunk.address:02x}")
-
- # Be aware that if a chunk field is unreadable (e.g. a fake chunk straddling an unmapped page boundary) it will be None, always check.
- if chunk.prev_size is not None:
- print(f"chunk.prev_size: 0x{chunk.prev_size:02x}")
-
- if chunk.size is not None:
- print(f"chunk.size: 0x{chunk.size:02x}")
-
- # Flags may be retrieved individually or as a dictionary of all 3.
- if chunk.non_main_arena is not None:
- print(f"chunk.non_main_arena: {chunk.non_main_arena}")
-
- if chunk.is_mmapped is not None:
- print(f"chunk.is_mmapped: {chunk.is_mmapped}")
-
- if chunk.prev_inuse is not None:
- print(f"chunk.prev_inuse: {chunk.prev_inuse}")
-
- if chunk.flags is not None:
- print(f"chunk.flags: {chunk.flags}")
-
- if chunk.fd is not None:
- print(f"chunk.fd: 0x{chunk.fd:02x}")
-
- if chunk.bk is not None:
- print(f"chunk.bk: 0x{chunk.bk:02x}")
-
-
parser = argparse.ArgumentParser()
parser.description = (
"Iteratively print chunks on a heap, default to the current thread's active heap."