Skip to content

Commit

Permalink
Update fix of #628: removing unnecssary completion for pcustom
Browse files Browse the repository at this point in the history
  • Loading branch information
hugsy committed Apr 9, 2021
1 parent f095a8b commit 3102749
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions gef.py
Original file line number Diff line number Diff line change
Expand Up @@ -5065,7 +5065,7 @@ class PCustomListCommand(PCustomCommand):
_syntax_ = "{:s}".format(_cmdline_)

def __init__(self):
super().__init__(complete=gdb.COMPLETE_SYMBOL)
super().__init__()
return

def do_invoke(self, argv):
Expand Down Expand Up @@ -5093,7 +5093,7 @@ class PCustomShowCommand(PCustomCommand):
__aliases__ = ["pcustom create", "pcustom update"]

def __init__(self):
super().__init__(complete=gdb.COMPLETE_FILENAME)
super().__init__()
return

def do_invoke(self, argv):
Expand Down Expand Up @@ -5143,7 +5143,7 @@ class PCustomEditCommand(PCustomCommand):
__aliases__ = ["pcustom create", "pcustom new", "pcustom update"]

def __init__(self):
super().__init__(complete=gdb.COMPLETE_FILENAME)
super().__init__()
return

def do_invoke(self, argv):
Expand Down

0 comments on commit 3102749

Please sign in to comment.