Skip to content

Commit 023123c

Browse files
committed
Fix a bogus return annotation & ignore serverless generated bits
1 parent 3b33bca commit 023123c

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

fuzzbucket/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
def deferred_app(
1010
environ: dict[str, str], start_response: typing.Callable
11-
) -> typing.Iterable[str]:
11+
) -> typing.Iterable[bytes]:
1212
return cached_app()(environ, start_response)
1313

1414

pyproject.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,8 @@ addopts = '''
123123
--cov-report term
124124
--cov-report html
125125
--cov-report xml
126+
--ignore=wsgi_handler.py
127+
--ignore=serverless_wsgi.py
126128
-vv
127129
--mypy
128130
--disable-warnings

0 commit comments

Comments
 (0)