Skip to content

Commit

Permalink
Fixed linting errors.
Browse files Browse the repository at this point in the history
  • Loading branch information
kirankumarmanku committed Aug 9, 2023
1 parent 1f3a33c commit 0890bc0
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ def lint(session: nox.Session) -> None:
# check import sorting using isort
session.install("isort")
session.run("isort", "--check", "./bundled/tool")
session.run("isort", "--check", "--skip", "sample.py", "./src/test/python_tests")
session.run("isort", "--check", "--skip", "sample.py", "--skip", "sample_formatted.py", "./src/test/python_tests")
session.run("isort", "--check", "noxfile.py")

# check formatting using autopep8
Expand Down
1 change: 0 additions & 1 deletion src/test/python_tests/test_formatting.py
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,6 @@ def test_skipping_excluded_files():
init_options = init_args["initializationOptions"]
init_options["settings"][0]["args"] = ["--exclude=**/*.py"]
ls_session.initialize(init_args)
# ls_session.initialize()

ls_session.notify_did_open(
{
Expand Down

0 comments on commit 0890bc0

Please sign in to comment.