style: format to length 100

This commit is contained in:
2026-07-02 12:52:45 +02:00
parent 40b12c12db
commit dc6218e45f
23 changed files with 124 additions and 362 deletions
+1 -3
View File
@@ -38,9 +38,7 @@ def test_data_collection_exception_default_message():
def test_authentication_exception_properties():
exc = AuthenticationException(
"Failed", status_code=403, code=AuthErrorCode.FORBIDDEN
)
exc = AuthenticationException("Failed", status_code=403, code=AuthErrorCode.FORBIDDEN)
assert exc.status_code == 403
assert exc.code == AuthErrorCode.FORBIDDEN
assert "Failed" in str(exc)