Skip to content

Commit

Permalink
Fix file bug in windows (#28)
Browse files Browse the repository at this point in the history
  • Loading branch information
victorialslocum authored Jun 2, 2023
1 parent 5926315 commit 0899ded
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/feature_hover.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ def registry_resolver(
if registry_desc["file"]: # type:ignore[index]
registry_path = registry_desc["file"] # type:ignore[index]
line_no = registry_desc["line_no"] # type:ignore[index]
registry_link = f"[Go to code]({registry_path}#L{line_no})"
registry_link = f"[Go to code](file://{registry_path}#L{line_no})"

# find registry description or return no description
registry_docstring = (
Expand Down

0 comments on commit 0899ded

Please sign in to comment.