Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: typo #2298

Merged
merged 1 commit into from
Jan 9, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/major_releases/introducing_isort_5.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ import c
import d
```

isort 5 adds support for [Action Comments](https://pycqa.github.io/isort/docs/configuration/action_comments.html) which provide a quick and convient way to control the flow of parsing within single source files.
isort 5 adds support for [Action Comments](https://pycqa.github.io/isort/docs/configuration/action_comments.html) which provide a quick and convenient way to control the flow of parsing within single source files.


# First class Python API
Expand Down
6 changes: 3 additions & 3 deletions tests/unit/test_regressions.py
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ def test_trailing_comma_doesnt_introduce_broken_code_with_comment_and_wrap_issue


def test_ensure_sre_parse_is_identified_as_stdlib_issue_1304():
"""Ensure sre_parse is idenified as STDLIB.
"""Ensure sre_parse is identified as STDLIB.
See: https://github.com/pycqa/isort/issues/1304.
"""
assert (
Expand Down Expand Up @@ -353,7 +353,7 @@ def test_isort_shouldnt_add_extra_new_line_when_fass_and_n_issue_1315():

def test_isort_doesnt_rewrite_import_with_dot_to_from_import_issue_1280():
"""Test to ensure isort doesn't rewrite imports in the from of import y.x into from y import x.
This is because they are not technically fully equivalent to eachother and can introduce broken
This is because they are not technically fully equivalent to each other and can introduce broken
behaviour.
See: https://github.com/pycqa/isort/issues/1280
"""
Expand Down Expand Up @@ -624,7 +624,7 @@ def test_reverse_relative_combined_with_force_sort_within_sections_issue_1395():


def test_isort_should_be_able_to_add_independent_of_doc_string_placement_issue_1420():
"""isort should be able to know when an import requested to be added is sucesfully added,
"""isort should be able to know when an import requested to be added is successfully added,
independent of where the top doc string is located.
See: https://github.com/PyCQA/isort/issues/1420
"""
Expand Down