Skip to content

Commit ce281a4

Browse files
committed
format code
1 parent 381b4b6 commit ce281a4

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

tests/cli/test_code_scanner.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from click import ClickException
44
from git import InvalidGitRepositoryError
55

6-
from cli.code_scanner import _handle_exception # noqa
6+
from cli.code_scanner import _handle_exception # noqa
77
from cli.exceptions import custom_exceptions
88

99

@@ -19,7 +19,8 @@ def ctx():
1919
(custom_exceptions.ZipTooLargeError(1000), True),
2020
(InvalidGitRepositoryError(), None),
2121
])
22-
def test_handle_exception_soft_fail(ctx: click.Context, exception: custom_exceptions.CycodeError, expected_soft_fail: bool):
22+
def test_handle_exception_soft_fail(
23+
ctx: click.Context, exception: custom_exceptions.CycodeError, expected_soft_fail: bool):
2324
with ctx:
2425
_handle_exception(ctx, exception)
2526

0 commit comments

Comments
 (0)