Skip to content

Commit

Permalink
#3 Add help()
Browse files Browse the repository at this point in the history
  • Loading branch information
docktermj committed Dec 21, 2023
1 parent cadc566 commit 57e6357
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/senzing_abstract/g2helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def construct_help(self: Any, method_name: str = "") -> str:
lines = method_comment.split("\n")
method_overview = lines[0].strip()
result = f"{result}\n{method_name} - {method_overview}"
result = f"{result}\n\nFor method details, use {class_name}.help('method_name')"
result = f"{result}\n\nFor method details, use <{class_name}-variable>.help('method_name')"
else:
method_comment = inspect.getdoc(getattr(self, method_name))
if method_comment is not None:
Expand Down

0 comments on commit 57e6357

Please sign in to comment.