Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings
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
12 changes: 12 additions & 0 deletions 12 .github/workflows/isort.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: isort

on:
- push
- pull_request

jobs:
isort:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: isort/isort-action@v1.0.0
DimitriPapadopoulos marked this conversation as resolved.
Show resolved Hide resolved
2 changes: 1 addition & 1 deletion 2 codespell_lib/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
from ._codespell import main, _script_main # noqa
from ._codespell import _script_main, main # noqa
from ._version import __version__ # noqa
4 changes: 2 additions & 2 deletions 4 codespell_lib/tests/test_basic.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@
import os
import os.path as op
import re
from shutil import copyfile
import subprocess
import sys
from shutil import copyfile

import pytest

import codespell_lib as cs_
from codespell_lib._codespell import uri_regex_def, EX_USAGE, EX_OK, EX_DATAERR
from codespell_lib._codespell import EX_DATAERR, EX_OK, EX_USAGE, uri_regex_def


def test_constants():
Expand Down
5 changes: 2 additions & 3 deletions 5 codespell_lib/tests/test_dictionary.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
import glob
import os.path as op
import os
import os.path as op
import re
import warnings

import pytest

from codespell_lib._codespell import _builtin_dictionaries
from codespell_lib._codespell import supported_languages
from codespell_lib._codespell import _builtin_dictionaries, supported_languages

spellers = dict()

Expand Down
Morty Proxy This is a proxified and sanitized view of the page, visit original site.