Skip to content

Commit e682d72

Browse files
committed
pylint
1 parent d1912f8 commit e682d72

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

services/storage/tests/unit/test_utils_handlers.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -174,9 +174,9 @@ async def test_generic_exception_handler(initialized_app: FastAPI, client: Async
174174

175175
@initialized_app.get("/test")
176176
async def test_endpoint():
177-
raise Exception(
177+
raise Exception( # pylint: disable=broad-exception-raised # noqa: TRY002
178178
_error_msg
179-
) # pylint: disable=broad-exception-raised # noqa: TRY002
179+
)
180180

181181
response = await client.get("/test")
182182
assert_status(

0 commit comments

Comments
 (0)