Skip to content

Commit

Permalink
Fix quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
DennisTraub committed Jan 29, 2024
1 parent 911ad5d commit de5553d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .tools/readmes/scanner.py
Original file line number Diff line number Diff line change
Expand Up @@ -145,9 +145,9 @@ def snippet(self, example, sdk_ver, readme_folder, api_name):
snippet_files = excerpt["snippet_files"]
# TODO: Find the best (or all?) snippet files, not the first.
full_path = snippet_files[0]
tag_path = '/'.join(full_path.split('/')[3:])
tag_path = "/".join(full_path.split("/")[3:])
if "cross-services" in full_path:
tag_path = '../cross-services/' + tag_path
tag_path = "../cross-services/" + tag_path
elif "block_content" in ex_ver:
tag_path = github
if github is not None and tag_path is None:
Expand Down

0 comments on commit de5553d

Please sign in to comment.