Fix: gitignore newlines

This commit is contained in:
Istvan Ruzman
2020-08-17 09:31:43 +02:00
parent 705645195a
commit 96bcd393a1
3 changed files with 2 additions and 3 deletions

3
.gitignore vendored
View File

@@ -2,8 +2,9 @@
dist dist
docs/.build/ docs/.build/
.mypy_cache .mypy_cache
__pycache__
.pytest_cache .pytest_cache
.tox .tox
**egg-info **egg-info
**.pyc **.pyc
**__pycache__

View File

@@ -409,4 +409,3 @@ def test_get_nonexisting_attributes_from_dictionaries(attribute):
dd = Dictionary("", dictionary) dd = Dictionary("", dictionary)
with pytest.raises(KeyError): with pytest.raises(KeyError):
_ = dd[attribute] _ = dd[attribute]

View File

@@ -179,4 +179,3 @@ def test_salt_crypt():
# dec = utils.salt_decrypt("secret", authenticator, salt, enc) # dec = utils.salt_decrypt("secret", authenticator, salt, enc)
# assert enc == encrypted # assert enc == encrypted
# assert plaintext = dec # assert plaintext = dec