Skip to content

Commit

Permalink
Fixes broken link on docs page (#253)
Browse files Browse the repository at this point in the history
* Fixes broken link on docs page

* STY: fix ruff/pre-commit errors

```
lint with ruff...........................................................Failed
- hook id: ruff
- exit code: 1

docs/conf.py:155:17: F541 [*] f-string without any placeholders
Found 1 error.
[*] 1 fixable with the `--fix` option.
```

---------

Co-authored-by: Max Rakitin <[email protected]>
  • Loading branch information
RobertSchaffer1 and mrakitin authored Apr 22, 2024
1 parent 610d2d1 commit 67fe93c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@
html_theme = "pydata_sphinx_theme"
github_repo = "ophyd-async"
github_user = "bluesky"
switcher_json = f"https://{github_user}.github.io/{github_repo}/switcher.json"
switcher_json = "https://blueskyproject.io/ophyd-async/switcher.json"
switcher_exists = requests.get(switcher_json).ok
if not switcher_exists:
print(
Expand Down

0 comments on commit 67fe93c

Please sign in to comment.