diff --git a/.gitignore b/.gitignore index 70c993a..16fd329 100644 --- a/.gitignore +++ b/.gitignore @@ -2,8 +2,9 @@ dist docs/.build/ .mypy_cache +__pycache__ .pytest_cache .tox **egg-info **.pyc -**__pycache__ + diff --git a/tests/test_dictionary.py b/tests/test_dictionary.py index 9a3d744..ed5b9d1 100644 --- a/tests/test_dictionary.py +++ b/tests/test_dictionary.py @@ -409,4 +409,3 @@ def test_get_nonexisting_attributes_from_dictionaries(attribute): dd = Dictionary("", dictionary) with pytest.raises(KeyError): _ = dd[attribute] - diff --git a/tests/test_parse_header.py b/tests/test_parse_header.py index 319a8cd..2b13f55 100644 --- a/tests/test_parse_header.py +++ b/tests/test_parse_header.py @@ -179,4 +179,3 @@ def test_salt_crypt(): # dec = utils.salt_decrypt("secret", authenticator, salt, enc) # assert enc == encrypted # assert plaintext = dec -