diff --git a/blue_chip/tasks/linting.py b/blue_chip/tasks/linting.py index 17c25da..2e9c8c4 100644 --- a/blue_chip/tasks/linting.py +++ b/blue_chip/tasks/linting.py @@ -9,7 +9,6 @@ from blue_chip import config, constants - __all__ = ["cfg_lint", "lint"] diff --git a/tests/test_basic.py b/tests/test_basic.py index 92a0f08..7b07f4b 100644 --- a/tests/test_basic.py +++ b/tests/test_basic.py @@ -33,7 +33,7 @@ def test_for_fire(): def test_noarg_cli_task(cmd): cmplt_process = subprocess.run(["bcp", cmd]) print(cmplt_process.stdout) - assert cmplt_process.returncode is 0 + assert cmplt_process.returncode == 0 @pytest.mark.parametrize(