Skip to content

Commit

Permalink
Clean up based on self-review
Browse files Browse the repository at this point in the history
  • Loading branch information
mofojed committed Feb 14, 2025
1 parent c14acc7 commit 45e5f96
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
2 changes: 0 additions & 2 deletions py/server/deephaven_internal/auto_completer/_completer.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,6 @@ class Completer:
def __init__(self):
self._docs = {}
self._versions = {}
# Cache for signature markdown
self.signature_cache = {}
# we will replace this w/ top-level globals() when we open the document
self.__scope = globals()
# might want to make this a {uri: []} instead of []
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,13 @@ def _generate_description_markdown(docs: Docstring, params: list[ParameterDetail
def _generate_param_markdowns(signature: Signature, params: list[Any]) -> list[Any]:
"""
Generate markdown for each parameter in the signature. This will be shown on top of the description markdown.
Args:
signature: The signature from `jedi`
params: The list of parameters from `_get_params`
Returns:
A list of signature names and description pairs.
"""

param_docs = []
Expand Down

0 comments on commit 45e5f96

Please sign in to comment.