Format with default line-length=88 (was 79 with Sanic).

This commit is contained in:
L. Kärkkäinen
2023-10-25 04:13:13 +01:00
parent e4daf1ab21
commit 1afea39cb2
137 changed files with 540 additions and 1613 deletions

View File

@@ -22,9 +22,7 @@ class CustomRequest(Request[Sanic[CustomConfig, Foo], RequestContext]):
return ctx
app = Sanic(
"test", config=CustomConfig(), ctx=Foo(), request_class=CustomRequest
)
app = Sanic("test", config=CustomConfig(), ctx=Foo(), request_class=CustomRequest)
@app.get("/")

View File

@@ -92,9 +92,7 @@ def run_check(path_location: str) -> str:
),
),
)
def test_check_app_default(
path_location: str, expected: List[Tuple[str, int]]
) -> None:
def test_check_app_default(path_location: str, expected: List[Tuple[str, int]]) -> None:
output = run_check(f"samples/{path_location}")
for text, number in expected: