Skip to content

Commit

Permalink
Improve skip comment documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
timothycrosley committed Jul 16, 2020
1 parent bade597 commit 8bcb2db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/configuration/action_comments.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ import sys
## isort: skip

If placed on the same line as (or within the continuation of a) an import statement, isort will not sort this import.
More specifically, it prevents the import statement to be recognized by isort as an import. In consequence, this line will be treated as code and be pushed down to below the import section of the file.
More specifically, it prevents the import statement from being recognized by isort as an import. In consequence, this line will be treated as code and be pushed down to below the import section of the file.

Example:

Expand Down

0 comments on commit 8bcb2db

Please sign in to comment.