Skip to content

Commit fa5e7a5

Browse files
committed
fix lint
1 parent c216d32 commit fa5e7a5

File tree

4 files changed

+19
-34
lines changed

4 files changed

+19
-34
lines changed

src/corva/__init__.py

+1-19
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,4 @@
1-
from .api import Api
2-
from .handlers import scheduled, stream, task, partial_rerun_merge
3-
from .logger import CORVA_LOGGER as Logger
4-
from .models.rerun import RerunDepth, RerunDepthRange, RerunTime, RerunTimeRange
5-
from .models.scheduled.scheduled import (
6-
ScheduledDataTimeEvent,
7-
ScheduledDepthEvent,
8-
ScheduledNaturalTimeEvent,
9-
)
10-
from .models.stream.stream import (
11-
StreamDepthEvent,
12-
StreamDepthRecord,
13-
StreamTimeEvent,
14-
StreamTimeRecord,
15-
)
16-
from .models.merge.merge import PartialRerunMergeEvent
17-
from .models.task import TaskEvent
18-
from .service.cache_sdk import UserRedisSdk as Cache
19-
from .shared import SECRETS as secrets
1+
from .models.scheduled.scheduled import ScheduledDataTimeEvent
202

213

224
def __getattr__(name):

src/corva/validate_app_init.py

+9-5
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import functools
33
import json
44
import os
5-
from typing import Any, Optional, Type, Dict
5+
from typing import Any, Dict, Optional, Type
66

77
import pydantic
88

@@ -34,15 +34,17 @@ def guess_event_type(aws_event: Any) -> Optional[Type[RawBaseEvent]]:
3434
def validate_manifested_type(manifest: Dict[str, Any], app_decorator_type: str) -> None:
3535
manifest_app_type = manifest.get("application", {}).get("type")
3636
if manifest_app_type and manifest_app_type != app_decorator_type:
37-
raise RuntimeError(f'Application with type "{manifest_app_type}" '
38-
f'can\'t invoke a "{app_decorator_type}" handler')
37+
raise RuntimeError(
38+
f'Application with type "{manifest_app_type}" '
39+
f'can\'t invoke a "{app_decorator_type}" handler'
40+
)
3941

4042

4143
def validate_event_payload(aws_event, app_decorator_type) -> None:
4244
base_event_cls_to_app_type_mapping: Dict[str, Type[RawBaseEvent]] = {
4345
"task": RawTaskEvent,
4446
"stream": RawStreamEvent,
45-
"scheduled": RawScheduledEvent
47+
"scheduled": RawScheduledEvent,
4648
}
4749

4850
if event_cls := guess_event_type(aws_event):
@@ -51,7 +53,9 @@ def validate_event_payload(aws_event, app_decorator_type) -> None:
5153
# run mode for existing app types
5254
return
5355

54-
if not issubclass(event_cls, base_event_cls_to_app_type_mapping.get(app_decorator_type)):
56+
if not issubclass(
57+
event_cls, base_event_cls_to_app_type_mapping.get(app_decorator_type)
58+
):
5559
raise RuntimeError(
5660
f'Application with type "{app_decorator_type}" '
5761
f'was invoked with "{event_cls}" event type'

tests/unit/test_apps_event_types.py

+5-8
Original file line numberDiff line numberDiff line change
@@ -99,14 +99,11 @@ def lambda_handler(_event, _api):
9999

100100
particular_app = app_decorator(lambda_handler)
101101

102-
mocked_manifest = {
103-
"application":
104-
{
105-
"type": manifested_app_type
106-
}
107-
}
108-
109-
with mock.patch("corva.validate_app_init.read_manifest", return_value=mocked_manifest):
102+
mocked_manifest = {"application": {"type": manifested_app_type}}
103+
104+
with mock.patch(
105+
"corva.validate_app_init.read_manifest", return_value=mocked_manifest
106+
):
110107
with pytest.raises(RuntimeError):
111108
particular_app(
112109
{},

tests/unit/test_partial_rerun_merge_app.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
from uuid import uuid4
44

55
import pytest
6-
from pydantic import ValidationError
76

87
import corva
98

@@ -52,7 +51,10 @@ def partial_rerun_merge_app(event, api, asset_cache, rerun_asset_cache):
5251

5352
with pytest.raises(RuntimeError) as e:
5453
stream_app(raw_event, context)
55-
assert 'Application with type "stream" was invoked with "unknown" event type' in str(e.value)
54+
assert (
55+
'Application with type "stream" was invoked with "unknown" event type'
56+
in str(e.value)
57+
)
5658

5759

5860
def test_merge_event_handler_called_from_stream_app_returns_expected_cache_values(

0 commit comments

Comments
 (0)