Skip to content

Commit 0ccefec

Browse files
Fix remaining broken links
1 parent 6f42a66 commit 0ccefec

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

docs/quick_start/0.-try.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ import b, a
3232
<div id="outputEditor" class="editor">Loading...</div>
3333
<div>
3434

35-
&nbsp;Configuration (Note: the below must follow JSON format). Full configuration guide is <a href="https://pycqa.github.io/isort/docs/configuration/options/">here</a>:
35+
&nbsp;Configuration (Note: the below must follow JSON format). Full configuration guide is <a href="https://pycqa.github.io/isort/docs/configuration/options">here</a>:
3636

3737
<div id="configEditor" class="configurator">{"line_length": 80,
3838
"profile": "black",
@@ -47,4 +47,4 @@ import b, a
4747
<div style="clear:both;"></div>
4848
Like what you saw? Installing isort to use locally is as simple as `pip3 install isort`.
4949

50-
[Click here for full installation instructions.](https://pycqa.github.io/isort/docs/quick_start/1.-install/)
50+
[Click here for full installation instructions.](https://pycqa.github.io/isort/docs/quick_start/1.-install)

docs/quick_start/2.-cli.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Once installed, `isort` exposes a command line utility for sorting, organizing, and formatting imports within Python and Cython source files.
44

55
To verify the tool is installed correctly, run `isort` from the command line and you should be given the available commands and the version of isort installed.
6-
For a list of all CLI options type `isort --help` or view [the online configuration reference](https://pycqa.github.io/isort/docs/configuration/options/):
6+
For a list of all CLI options type `isort --help` or view [the online configuration reference](https://pycqa.github.io/isort/docs/configuration/options):
77

88
<script id="asciicast-346599" src="https://asciinema.org/a/346599.js" async></script>
99

docs/quick_start/3.-api.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@ Highlights include:
1919
- `isort.place_module` - Takes the name of a module as a string and returns the categorization determined for it.
2020
- `isort.place_module_with_reason` - Takes the name of a module as a string and returns the categorization determined for it and why that categorization was given.
2121

22-
For a full definition of the API see the [API reference documentation](https://pycqa.github.io/isort/reference/isort/api/) or try `help(isort)` from an interactive interpreter.
22+
For a full definition of the API see the [API reference documentation](https://pycqa.github.io/isort/reference/isort/api) or try `help(isort)` from an interactive interpreter.

docs/upgrade_guides/5.0.0.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ This guide is meant to help migrate projects from using isort 4.x.x unto the 5.0
55

66
Related documentation:
77

8-
* [isort 5.0.0 changelog](https://pycqa.github.io/isort/CHANGELOG/#500-penny-july-4-2020)
8+
* [isort 5.0.0 changelog](https://pycqa.github.io/isort/CHANGELOG#500-penny-july-4-2020)
99
* [isort 5 release document](https://pycqa.github.io/isort/docs/major_releases/introducing_isort_5.html)
1010

1111
!!! important - "If you use pre-commit remove seed-isort-config."

isort/exceptions.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ def __init__(self, unsupported_settings: Dict[str, Dict[str, str]]):
167167
"isort was provided settings that it doesn't support:\n\n"
168168
f"{errors}\n\n"
169169
"For a complete and up-to-date listing of supported settings see: "
170-
"https://pycqa.github.io/isort/docs/configuration/options/.\n"
170+
"https://pycqa.github.io/isort/docs/configuration/options.\n"
171171
)
172172
self.unsupported_settings = unsupported_settings
173173

0 commit comments

Comments
 (0)