Skip to content

Commit 5738e80

Browse files
committed
lint
1 parent 4c00881 commit 5738e80

2 files changed

Lines changed: 2 additions & 7 deletions

File tree

src/datacustomcode/scan.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@
2323
Any,
2424
ClassVar,
2525
Dict,
26-
Optional,
2726
Set,
2827
Union,
2928
)
@@ -499,9 +498,7 @@ def update_config(file_path: str) -> dict[str, Any]:
499498
return existing_config
500499

501500

502-
def _update_streaming_config(
503-
existing_config: dict[str, Any], file_path: str
504-
) -> None:
501+
def _update_streaming_config(existing_config: dict[str, Any], file_path: str) -> None:
505502
output = scan_file_streaming(file_path)
506503
read_layer = output.read_layer
507504

tests/test_deploy.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -673,9 +673,7 @@ def test_create_deployment_function_invoke_options(self, mock_make_api_call):
673673
assert result.fileUploadUrl == "https://upload.example.com"
674674

675675
@patch("datacustomcode.deploy._make_api_call")
676-
def test_create_deployment_default_path_no_invoke_options(
677-
self, mock_make_api_call
678-
):
676+
def test_create_deployment_default_path_no_invoke_options(self, mock_make_api_call):
679677
"""Without invokeOptions, the deployment uses the default v63.0 path."""
680678
access_token = AccessTokenResponse(
681679
access_token="test_token", instance_url="https://instance.example.com"

0 commit comments

Comments
 (0)