run black over dangling files

This commit is contained in:
Alex Stokes
2019-08-02 11:44:11 -07:00
parent da9d5cadec
commit 7b7c8ad30d
11 changed files with 844 additions and 560 deletions

View File

@ -1,7 +1,6 @@
import pytest
@pytest.mark.parametrize("test_input,expected", [("3+5", 8), ("2+4", 6), ("6*9", 54)])
def test_eval(test_input, expected):
assert eval(test_input) == expected