Skip to content

Commit

Permalink
Add more missing hints
Browse files Browse the repository at this point in the history
  • Loading branch information
lebr0nli committed Apr 30, 2024
1 parent 1013645 commit f2b3340
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gdbinit-gep.py
Original file line number Diff line number Diff line change
Expand Up @@ -353,7 +353,7 @@ def get_set_string(self) -> str:
svalue = "on" if svalue else "off"
return f"Set {self.set_show_doc} to {svalue!r}."

def get_show_string(self, svalue: str) -> str:
def get_show_string(self, svalue: T.Any) -> str:
if not self.gep_loaded:
return ""
return f"{self.set_show_doc.capitalize()} is {svalue!r}."
Expand Down

0 comments on commit f2b3340

Please sign in to comment.