diff options
| author | Bobby <[email protected]> | 2022-08-30 19:47:52 -0400 |
|---|---|---|
| committer | Bobby <[email protected]> | 2022-08-30 19:47:52 -0400 |
| commit | 655183d9c4a76b49a7a4e1365c3592ea8d874e53 (patch) | |
| tree | 162f0a80c97b78d4ba10ccc9a495d83863a1618a | |
| parent | d580ea8403cdb1ae3660789500dbcede5425db0e (diff) | |
| download | edify-655183d9c4a76b49a7a4e1365c3592ea8d874e53.tar.xz edify-655183d9c4a76b49a7a4e1365c3592ea8d874e53.zip | |
Fix Linting Checks
| -rw-r--r-- | tests/test_edify.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/test_edify.py b/tests/test_edify.py index 66ee454..782c347 100644 --- a/tests/test_edify.py +++ b/tests/test_edify.py @@ -3,4 +3,5 @@ from edify import main def test_main(): - assert main.main() == None + if main.main() is None: + assert True |
