Skip to content

Commit a45c8dc

Browse files
committed
lint: fix CI
1 parent a2e99f1 commit a45c8dc

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

faststream/asyncapi/generate.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
Reference,
1212
Schema,
1313
Server,
14-
Tag,
1514
)
1615
from faststream.asyncapi.schema.bindings import http as http_bindings
1716
from faststream.constants import ContentTypes

tests/asyncapi/test_asgi.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ async def handler2(): ...
1919
"/test",
2020
make_ping_asgi(
2121
broker,
22-
description="test desctiption",
22+
description="test description",
2323
tags=[{"name": "test"}],
2424
),
2525
),
@@ -32,7 +32,7 @@ async def handler2(): ...
3232

3333
assert schema["channels"] == {
3434
"/test": {
35-
"description": "test desctiption",
35+
"description": "test description",
3636
"subscribe": {
3737
"bindings": {
3838
"http": {"method": "GET, HEAD", "bindingVersion": "0.1.0"}

0 commit comments

Comments
 (0)